博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT甲级——A1044 Shopping in Mars
阅读量:4541 次
发布时间:2019-06-08

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

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 (≤), 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 D1​​DN​​ (Di​​103​​ for all ,) 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 > 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.

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

【题意】

给出一个数字序列与一个数S,在数字序列中求出所有和值为S的连续子序列(区间下标左端点小的先输出,左端点相同时右端点小的先输出)。若没有这样的序列,求出和值恰好大于S的子序列(即在所有和值大于S的子序列中和值最接近S)。假设序列下标从1开始。

 

1 #include 
2 #include
3 using namespace std; 4 //暴力解法,复杂度为O(N),没通过测试,超时 5 int N, M; 6 vector
value,sum; 7 vector
>res, minRes;//res存刚好切割值等于付款值,min存切割值为最小的 8 void Way1() 9 {10 int minV = M;11 for (int i = 1; i <= N; ++i)12 {13 int s = 0;14 for (int j = i; j <= N; ++j)15 {16 s += value[j];17 if (s < M)continue;18 else if (s == M)19 res.push_back(make_pair(i, j));20 else if (s > M)21 {22 if (minV == (s - M))23 minRes.push_back(make_pair(i, j));24 else if (minV > (s - M))25 {26 minV = s - M;27 minRes.clear();28 minRes.push_back(make_pair(i, j));29 }30 }31 break;32 }33 } 34 }35 //方法二,使用二分法36 int upper_bound(int L, int &tempS)37 {38 int left = L, right = N, mid;39 while (left < right)40 {41 mid = (left + right) / 2;42 if (sum[mid]-sum[L-1] >= M)43 right = mid;44 else45 left = mid + 1;46 }47 tempS = sum[right] - sum[L - 1];48 return right;49 }50 51 void Way2()52 {53 int minV = sum[N], tempS;54 for (int i = 1; i <= N; ++i)//左端55 {56 int j = upper_bound(i, tempS);57 if (tempS >minV)continue;58 else if (tempS >= M)59 {60 if (tempS < minV)61 {62 res.clear();63 minV = tempS;64 }65 res.push_back(make_pair(i, j));66 }67 }68 }69 70 int main()71 {72 cin >> N >> M;73 value.resize(N + 1);74 sum.resize(N + 1);75 for (int i = 1; i <= N; ++i)76 {77 cin >> value[i];78 sum[i] = sum[i - 1] + value[i];79 }80 Way2();81 if (res.size() > 0)82 for (auto a : res)83 cout << a.first << "-" << a.second << endl;84 else85 for (auto a : minRes)86 cout << a.first << "-" << a.second << endl;87 return 0;88 }

 

转载于:https://www.cnblogs.com/zzw1024/p/11261909.html

你可能感兴趣的文章
14. 最长公共前缀
查看>>
Redis文档
查看>>
项目重构
查看>>
(笔试题)和一半的组合数
查看>>
leetcode--Algorithm--Array_Part 1 Easy- 566 Reshape the Matrix
查看>>
AC自动机算法详解 (转载)
查看>>
python3-day5(模块)
查看>>
Linux配置JDK
查看>>
qt 读取xml文件
查看>>
python3之正则表达式
查看>>
Visual Studio提示“无法启动IIS Express Web服务器”的解决方法
查看>>
Java 时间总结
查看>>
jQuery EasyUI 拖放 – 基本的拖动和放置
查看>>
这些年正Android - 母亲
查看>>
[工具] BurpSuite--XssValidator插件
查看>>
LPC1788系统时钟初始化
查看>>
channel vs mutex
查看>>
页面布局(--FlowLayout,--BorderLayout,--GridLayout)
查看>>
实验吧--web--你真的会php吗
查看>>
python中的setdefault()方法
查看>>