Shopping in Mars is quite a different experience. The Mars people pay by chained diamonds. Each diamond has a value (in Mars dollars M$). When making the payment, the chain can be cut at any position for only once and some of the diamonds are taken off the chain one by one. Once a diamond is off the chain, it cannot be taken back. For example, if we have a chain of 8 diamonds with values M$3, 2, 1, 5, 4, 6, 8, 7, and we must pay M$15. We may have 3 options:
Now given the chain of diamond values and the amount that a customer has to pay, you are supposed to list all the paying options for the customer.
If it is impossible to pay the exact amount, you must suggest solutions with minimum lost.
Each input file contains one test case. For each case, the first line contains 2 numbers: N (≤), the total number of diamonds on the chain, and M (≤), the amount that the customer has to pay. Then the next line contains N positive numbers D?1???D?N?? (D?i??≤10?3?? for all ,) which are the values of the diamonds. All the numbers in a line are separated by a space.
For each test case, print i-j
in a line for each pair of i
≤ j
such that Di
+ ... + Dj
= M. Note that if there are more than one solution, all the solutions must be printed in increasing order of i
.
If there is no solution, output i-j
for pairs of i
≤ j
such that Di
+ ... + Dj
> with (Di
+ ... + Dj
−) minimized. Again all the solutions must be printed in increasing order of i
.
It is guaranteed that the total value of diamonds is sufficient to pay the given amount.
16 15
3 2 1 5 4 6 8 7 16 10 15 11 9 12 14 13
1-5
4-6
7-8
11-11
5 13
2 4 5 7 9
2-4 4-5
前缀和还是挺好用,这个题目的数据肯定没有零的情况,否则这题可能就要30分了。
1 #include <bits/stdc++.h> 2 #define inf 0x3f3f3f3f 3 using namespace std; 4 int n,m; 5 int an[100005]; 6 int main(){ 7 cin >> n >> m; 8 for(int i = 1; i <= n ; i ++){ 9 cin >> an[i]; 10 an[i] += an[i-1]; 11 } 12 int l = 0; 13 int mx = inf; 14 bool flag = true; 15 for(int i = 1; i <= n; i++){ 16 if(an[i] - an[l] == m){ 17 flag = false; 18 cout <<l+1<<"-"<<i<<endl; 19 }else if(an[i] - an[l] > m){ 20 mx = min(mx, an[i]-an[l]); 21 l++; 22 i--; 23 } 24 } 25 if(flag){ 26 l = 0; 27 for(int i = 1; i <= n; i++){ 28 if(an[i] - an[l] == mx){ 29 cout <<l+1<<"-"<<i<<endl; 30 }else if(an[i] - an[l] > mx){ 31 l++; 32 i--; 33 } 34 } 35 } 36 return 0; 37 }
原文:https://www.cnblogs.com/zllwxm123/p/11178913.html