博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Equal Cut
阅读量:5038 次
发布时间:2019-06-12

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

Snuke has an integer sequence A of length N.
He will make three cuts in A and divide it into four (non-empty) contiguous subsequences B,C,D and E. The positions of the cuts can be freely chosen.
Let P,Q,R,S be the sums of the elements in B,C,D,E, respectively. Snuke is happier when the absolute difference of the maximum and the minimum among P,Q,R,S is smaller. Find the minimum possible absolute difference of the maximum and the minimum among P,Q,R,S.
Constraints
4≤N≤2×105
1≤Ai≤109
All values in input are integers.

 

输入

Input is given from Standard Input in the following format:
N
A1 A2 … AN

 

输出

Find the minimum possible absolute difference of the maximum and the minimum among P,Q,R,S.

 

样例输入

复制样例数据

53 2 4 1 2

样例输出

2

 

提示

If we divide A as B,C,D,E=(3),(2),(4),(1,2), then P=3,Q=2,R=4,S=1+2=3. Here, the maximum and the minimum among P,Q,R,S are 4 and 2, with the absolute difference of 2. We cannot make the absolute difference of the maximum and the minimum less than 2, so the answer is 2.

 
//枚举中点位置 再根据中点位置 贪心l,r的位置 代码如下 参考:https://blog.csdn.net/aaakirito/article/details/80884168?utm_source=blogxgwz5
#include 
using namespace std;typedef long long ll;inline ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } const int maxn = 200005; const ll inf = 0x7fffffff; ll a[maxn]; ll sum[maxn]; int main() { // cout<
<
=abs((sum[i]-sum[l+1])-(sum[l+1]-sum[0]))) { l++; } while(r
abs((sum[r+1]-sum[i])-(sum[n]-sum[r+1]))) { r++; } ll x,y,p,q; x=sum[i]-sum[l]; y=sum[l]-sum[0]; p=sum[r]-sum[i]; q=sum[n]-sum[r]; minn = min(minn,max(x,max(p,max(y,q)))-min(x,min(y,min(p,q)))); } printf("%lld\n",minn); }

 

转载于:https://www.cnblogs.com/hao-tian/p/10086656.html

你可能感兴趣的文章
技术项目,问题
查看>>
Android官方技术文档翻译——ApplicationId 与 PackageName
查看>>
Feign使用Hystrix无效原因及解决方法
查看>>
Sam做题记录
查看>>
hexo 搭建博客
查看>>
建造者模式(屌丝专用)
查看>>
Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
查看>>
C++的引用
查看>>
python itertools
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>