【C++】PAT(advanced level)1044. Shopping in Mars (25)

来源:互联网 发布:ubuntu core 教程 编辑:程序博客网 时间:2024/06/05 11:09

1044. Shopping in Mars (25)

时间限制
100 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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:

1. Cut the chain between 4 and 6, and take off the diamonds from the position 1 to 5 (with values 3+2+1+5+4=15).
2. Cut before 5 or after 6, and take off the diamonds from the position 4 to 6 (with values 5+4+6=15).
3. Cut before 8, and take off the diamonds from the position 7 to 8 (with values 8+7=15).

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.

Input Specification:

Each input file contains one test case. For each case, the first line contains 2 numbers: N (<=105), the total number of diamonds on the chain, and M (<=108), the amount that the customer has to pay. Then the next line contains N positive numbers D1 ... DN (Di<=103 for all i=1, ..., N) which are the values of the diamonds. All the numbers in a line are separated by a space.

Output Specification:

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 > M with (Di + ... + Dj - M) 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.

Sample Input 1:
16 153 2 1 5 4 6 8 7 16 10 15 11 9 12 14 13
Sample Output 1:
1-54-67-811-11
Sample Input 2:
5 132 4 5 7 9
Sample Output 2:
2-44-5
1.这道题用cin cout 会超时。2.开始学会习惯用printf scanf
#include<stdio.h>#include<iostream>#include<algorithm>#include<string.h>#include<vector>using namespace std;int main(){int N;long long int M;//freopen("in.txt","r",stdin);vector <int> dia;while(cin>>N>>M){int n=N;while(n--){int a;//cin>>a;scanf("%d",&a);dia.push_back(a);}n=0;int m=0;long long int sum=0,min=100000000;bool flag=false;while(true){if(sum<M){sum+=dia[m];m++;}else if(sum>M){if(sum<min){min=sum;}sum-=dia[n];n++;}else {int nn=n+1;//cout<<n+1<<"-"<<m<<endl;printf("%d-%d\n",nn,m);flag=true;sum+=dia[m];m++;sum-=dia[n];n++;}if(m==N&&sum<=M){if(sum==M){cout<<n+1<<"-"<<m<<endl;flag=true;}if(flag){break;}else{M=min;n=0;m=0;sum=0;}//flag=false;}}}//fclose(stdin);return 0;}

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 写真机喷头堵了怎么办 冬天穿旗袍腿冷怎么办 云短信发验证码怎么办 30人生迷茫时该怎么办 蒸饺子没有屉布怎么办 酵素浴生蛆虫该怎么办 做销售年纪大了怎么办 我的手表进水了怎么办 美度手表进水了怎么办 买了瓶过期香水怎么办 宝宝吃了润唇膏怎么办 新生3天宝宝打嗝怎么办 咖啡喝多了恶心怎么办 喝咖啡恶心想吐怎么办 咖啡喝多了头晕怎么办 喝咖啡反胃想吐怎么办 咖啡喝多了胃疼怎么办 喝了咖啡想吐怎么办 微商别人觉得贵怎么办 id被别人锁定了怎么办 2017闯红灯扣6分怎么办 乐天玛特超市卡怎么办 乐天玛特的卡怎么办 乐天玛特倒闭 卡怎么办 公租房五年到期怎么办 超市的水杯坏了怎么办 玩天涯明月刀卡怎么办? 想开童装店没什么经验怎么办 孕后期鼻炎犯了怎么办 酷狗国外听不了怎么办 酷狗音乐换手机怎么办 有优势卵泡不排卵怎么办 卵泡30mm不破怎么办 成熟的卵泡不破怎么办 卵泡大了不破怎么办 卵泡突然不长了怎么办 想怀孕卵泡不长怎么办 吉吉影音下载慢怎么办 辞职后社保断了怎么办 2岁泡泡糖咽下去怎么办 我在拼多多开团怎么办