PAT Advanced 1044 Shopping in Mars (25) [⼆分查找]
题目
Shopping in Mars is quite a diferent 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 of the chain one by one. Once a diamond is of the chain, it cannot be taken back. For example, if we have a chain of 8 diamonds with values M3, 2, 1, 5, 4, 6, 8, 7, and we must pay M15. We may have 3 options:
- Cut the chain between 4 and 6, and take of the diamonds from the position 1 to 5 (with values
3+2+1+5+4=15). - Cut before 5 or afer 6, and take of the diamonds from the position 4 to 6 (with values 5+4+6=15).
- Cut before 8, and take of 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 suficient to pay the given amount.
Sample Input 1:
16 15
3 2 1 5 4 6 8 7 16 10 15 11 9 12 14 13
Sample Output 1:
1-5
4-6
7-8
11-11
Sample Input 2:
5 13
2 4 5 7 9
Sample Output 2:
2-4
4-5
题目分析
已知一系列数S,已知一个整数N,一次从S中只能切分一次,切分之后可以从切分后的任意一边弹出M个数字,使得这M个数字之和>=M并且是最小值nearM,求出所有切分后可以弹出M个数字之和==nearM的情况,打印("切分位置-最后一个弹出数字的位置"(从左往右弹出)或者"最后一个弹出数字的位置-切分位置"(从右往左弹出))
解题思路
思路 01(最优)
- minans记录大于M的最小值,如果当前找到的tempnum>=M的最小值小于minans,清空之前记录的信息,因为找到了更小的情况
- 将所有情况记录在vector中最后打印
思路 02
- 二分查找到nearM>M的最小值(第一个大于M的数字的下标j,可能情况:s[j-1]-s[i-1]M(nearMM) 或者 s[j-1]-s[i-1]<M&&s[j]-s[i-1]>M(nearM==s[j]-s[i-1]))
- 二分查找到s[j-1]-s[i-1]==nearM的所有情况
Code
Code 01
#include <iostream>
#include <vector>
using namespace std;
int N,M;
vector<int> sum;
vector<int> res;
void find(int i,int& j,int& tempnum) {
int left =i,right=N;
while(left<right) {
int mid=(left+right)/2;
if(sum[mid]-sum[i-1]>=M) {
right = mid;
} else {
left = mid+1;
}
}
j = right; //此时left==right
tempnum=sum[j]-sum[i-1];
}
int main(int argc,char * argv[]) {
// 1 输入
scanf("%d%d",&N,&M);
// int sum[N+1]= {0};
sum.resize(N+1);
for(int i=1; i<=N; i++) {
scanf("%d",&sum[i]);
sum[i]+=sum[i-1];
}
// 2 查找切分点
int minans=sum[N]; //最小结果:若有等于M的minans=M,若没有等于M的取最小大于M的数作为minans的值
for(int i=1; i<=N; i++) {
int j,tempnum;
find(i,j,tempnum); // 二分查找 找到>=M的第一个数 tempnum
if(tempnum>minans) continue; //若tempnum比之前找到的最小值大,跳过不考虑
if(tempnum>=M) { //如果tempnum<=之前找到的最小值,并且>=M
if(tempnum<minans) { //如果小于 minans,替换
res.clear();
minans=tempnum;
}
// 如果 tempnum==minans(1 tempnum等于当前大于M的最小值 2 tempnum==M)
res.push_back(i);
res.push_back(j);
}
}
for(int i=0; i<res.size(); i+=2) {
printf("%d-%d\n",res[i],res[i+1]);
}
return 0;
}
Code 02
#include <iostream>
#include <vector>
using namespace std;
vector<int> sum;
int N,M,nearM=100010;
int up_bound(int left,int right,int x) {
while(left<right) {
int m=left+((right-left)>>1);
if(sum[m]>x) {
right=m;
} else {
left=m+1;
}
}
return left;
}
int main(int argc, char * argv[]) {
// 1 输入
scanf("%d%d",&N,&M);
sum.resize(N+1);
for(int i=1; i<=N; i++) {
scanf("%d",&sum[i]);
sum[i]+=sum[i-1];
}
// 2 二分查找>=M的最小值
for(int i=1; i<=N; i++) {
int j = up_bound(i,N+1,sum[i-1]+M);
if(sum[j-1]-sum[i-1]==M) {
nearM=M;
break;
} else if(j<=N&&sum[j]-sum[i-1]<nearM) {
nearM=sum[j]-sum[i-1];
}
}
for(int i=1; i<=N; i++) {
int j = up_bound(i,N+1,sum[i-1]+nearM);
if(sum[j-1]-sum[i-1]==nearM) {
printf("%d-%d\n",i,j-1);
}
}
return 0;
}
PAT Advanced 1044 Shopping in Mars (25) [⼆分查找]的更多相关文章
- PAT 甲级 1044 Shopping in Mars (25 分)(滑动窗口,尺取法,也可二分)
1044 Shopping in Mars (25 分) Shopping in Mars is quite a different experience. The Mars people pay ...
- 1044 Shopping in Mars (25分)(二分查找)
Shopping in Mars is quite a different experience. The Mars people pay by chained diamonds. Each diam ...
- 1044 Shopping in Mars (25 分)
Shopping in Mars is quite a different experience. The Mars people pay by chained diamonds. Each diam ...
- 【PAT甲级】1044 Shopping in Mars (25 分)(前缀和,双指针)
题意: 输入一个正整数N和M(N<=1e5,M<=1e8),接下来输入N个正整数(<=1e3),按照升序输出"i-j",i~j的和等于M或者是最小的大于M的数段. ...
- PAT 甲级 1044 Shopping in Mars
https://pintia.cn/problem-sets/994805342720868352/problems/994805439202443264 Shopping in Mars is qu ...
- PAT (Advanced Level) 1044. Shopping in Mars (25)
双指针. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #in ...
- PAT甲题题解-1044. Shopping in Mars (25)-水题
n,m然后给出n个数让你求所有存在的区间[l,r],使得a[l]~a[r]的和为m并且按l的大小顺序输出对应区间.如果不存在和为m的区间段,则输出a[l]~a[r]-m最小的区间段方案. 如果两层fo ...
- PAT Advanced 1027 Colors in Mars (20 分)
People in Mars represent the colors in their computers in a similar way as the Earth people. That is ...
- 1044. Shopping in Mars (25)
分析: 考察二分,简单模拟会超时,优化后时间正好,但二分速度快些,注意以下几点: (1):如果一个序列D1 ... Dn,如果我们计算Di到Dj的和, 那么我们可以计算D1到Dj的和sum1,D1到D ...
随机推荐
- 三十五、在SAP中定义选择屏幕,设置选择范围
一.代码如下,有2个地方需要注意,一个是SELECT-OPTIONS,还有一个是IN的使用 二.我们定义一下选择文本 三.我们运行程序 四.输出 五.当然,选择的时候,我们也可以用其他的方式,如下图
- Spring 实战4学习笔记(转)
http://blog.csdn.net/21aspnet/article/details/51386557 1.IOC装配Bean 参考[spring实战4 2.2],作者提倡无XML配置化. 1. ...
- Babel(1)认识Babel
阅读文档 Babel中文网 关于 Babel 你必须知道的 如何写好.babelrc?Babel的presets和plugins配置解析 不容错过的 Babel 7 知识汇总 一口(很长的)气了解 b ...
- 基于Ambari的WebUI部署Hive服务
基于Ambari的WebUI部署Hive服务 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.部署Ambari服务 博主推荐阅读: https://www.cnblogs.com ...
- 如何生成 SSH keys, 并在 Github 或 Gitlab 等上添加密钥
1 打开 Git Bash $ 2 输入 dir, 确认当前文件夹,并切换到想存密钥文件即pub文件的路径 $ dir 3 生成 密钥命令 ssh-keygen -t rsa -C "{ y ...
- 数据结构顺序表中Sqlist *L,&L,Sqlist *&L
//定义顺序表L的结构体 typedef struct { Elemtype data[MaxSize]: int length; }SqList; //建立顺序表 void CreateList(S ...
- springboot学习2 整合mybatis
springboot整合mybatis 一.添加mybatis和数据库连接的依赖 <!--整合mybatis--> <dependency> <groupId>or ...
- Mybatis(1)-初识mybaits
一.概述 1.概述 mybatis 是一个优秀的基于 java 的持久层框架,它内部封装了 jdbc,使开发者只需要关注 sql 语句本身, 而不需要花费精力去处理加载驱动.创建连接.创建 state ...
- 全面掌握Nginx配置+快速搭建高可用架构 一 开启status页面检测服务状态
输入命令Nginx -V 打开conf.d/default.conf 配置模块,配置位置在server或者location 配置完成后测试语法正确 nginx -tc /etc/nginx/nginx ...
- SASS - 语法
SASS – 简介 SASS – 环境搭建 SASS – 使用Sass程序 SASS – 语法 SASS – 变量 SASS- 局部文件(Partial) SASS – 混合(Mixin) SASS ...