博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1044 Shopping in Mars (25 分)
阅读量:5134 次
发布时间:2019-06-13

本文共 2957 字,大约阅读时间需要 9 分钟。

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 + ... + DjM) 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.注意边界值n+1;     2.注意下标j和j+1;
1 #include
2 using namespace std; 3 4 const int maxn=100010; 5 const int inf=0x3f3f3f3f; 6 7 int sum[maxn]; 8 9 10 int n,S,nearS=inf;11 12 13 int upper_bound(int low,int high,int x){14 int left=low,right=high,mid;15 16 if(sum[high]<=x)17 return high+1;18 19 20 while(left
x){24 right = mid;25 }else{26 left = mid+1;27 } 28 }29 30 return left;31 }32 33 34 int main(){35 cin>>n>>S;36 37 for(int i=1;i<=n;i++){38 cin>>sum[i];39 sum[i]+=sum[i-1]; 40 }41 42 43 44 45 for(int i=1;i<=n;i++){46 int j=upper_bound(i,n,sum[i-1]+S);47 48 if(sum[j-1]-sum[i-1]==S){49 nearS=S;50 break;51 }else if(sum[j]-sum[i-1]>S&&sum[j]-sum[i-1]

 

转载于:https://www.cnblogs.com/moranzju/p/11153983.html

你可能感兴趣的文章
day 5 作业
查看>>
第1节 flume:15、flume案例二,通过自定义拦截器实现数据的脱敏
查看>>
Java中抽象类和接口的区别
查看>>
Linux(CentOS)下安装Elasticsearch5.0.0
查看>>
nginx-2.nginx是什么
查看>>
oc语言中的构造方法
查看>>
flow control
查看>>
Springmvc集成CXF请看教程二
查看>>
怎样查找某个sp中哪条sql语句存在性能问题。
查看>>
[App Store Connect帮助]二、 添加、编辑和删除用户(5)创建一个沙盒测试员帐户...
查看>>
[Swift]LeetCode85. 最大矩形 | Maximal Rectangle
查看>>
ECMAScript 6 + Babel
查看>>
[AngularJS NG-redux] Handle Asynchronous Operations with Middleware
查看>>
[React] Compound Component (React.Children.map & React.cloneElement)
查看>>
JavaWeb开发必会技巧1——导入jar包
查看>>
一幅图看懂prototype与[[Prototype]]
查看>>
读《JavaScript权威指南》笔记(三)--对象
查看>>
AI ResNet V1
查看>>
BytePS
查看>>
UNIX环境高级编程 第11章 线程
查看>>