CF1260D A Game with Traps
http://codeforces.com/problemset/problem/1260/D
首先很明显可以想到二分答案,把能力值数组排个序就好。
考虑怎么check。
设当前二分值为w,即不能直接跨过权值>w的陷阱。
将所有的陷阱按l升序排列。可以发现,如果两个或多个
陷阱重叠,肯定是这个人直接从这几个陷阱最小的l走到
最大的r最优。
证明?这里只给出两个区间重叠的情况。
假设两个区间分别为[a,b],[c,d],a<c<b<d。
想把队伍从a带到d,第一种的总时间为3(d-a);如果是a->c
->a->b->d->c->d,总耗时是3(c-a)+3(d-b)-(c-b)
=3d+2c-2b-3a>3d-3a。
用双指针模拟就好。
#include<bits/stdc++.h>
using namespace std;
#define re register int
#define F(x,y,z) for(re x=y;x<=z;x++)
#define FOR(x,y,z) for(re x=y;x>=z;x--)
#define I inline void
#define IN inline int
typedef long long ll;
I read(int &res){
re g=1;register char ch=getchar();res=0;
while(!isdigit(ch)){
if(ch=='-')g=-1;
ch=getchar();
}
while(isdigit(ch)){
res=(res<<3)+(res<<1)+(ch^48);
ch=getchar();
}
res*=g;
}
int n,m,k,t,p,q,X,Y,sum,lim,a[202000];
inline bool bbb(int x,int y){
return x>y;
}
struct Barrier{
int l,r,w;
friend bool operator < (Barrier x,Barrier y){
return x.l==y.l?x.r<y.r:x.l<y.l;
}
}b[202000];
IN ck(int x){
if(!x)return 1;
sum=0;
lim=a[x];
p=1;
while(p<=k&&b[p].w<=lim)p++;
if(p>k)X=sum=0;
else sum=X=b[p].l-1;
while(p<=k){
Y=b[p].r;
q=p+1;
while(q<=k&&(b[q].w<=lim||b[q].l<=Y)){
if(b[q].w>lim)Y=max(Y,b[q].r);
q++;
}
sum+=3*(Y-X);
X=Y;
if(q>k)break;
sum+=(b[q].l-1-X);
X=b[q].l-1;
p=q;
}
sum+=(m-X);
//cout<<x<<" "<<sum<<endl;
if(sum<=t)return 1;
return 0;
}
IN divided(int x,int y){
if(x==y)return x;
re mid=(x+y+1)>>1;
if(ck(mid))x=mid;
else y=mid-1;
return divided(x,y);
}
int main(){
read(n);read(m);read(k);read(t);m++;
F(i,1,n){
read(a[i]);
}
sort(a+1,a+1+n,bbb);
F(i,1,k){
read(b[i].l);read(b[i].r);read(b[i].w);
}
sort(b+1,b+1+k);
b[k+1].l=0;
if(m>t){
cout<<"0";
return 0;
}
cout<<divided(0,n);
return 0;
}
CF1260D A Game with Traps的更多相关文章
- [转]50 Shades of Go: Traps, Gotchas, and Common Mistakes for New Golang Devs
http://devs.cloudimmunity.com/gotchas-and-common-mistakes-in-go-golang/ 50 Shades of Go: Traps, Gotc ...
- 绕过PALOALTO TRAPS EDR解决方案
0x1 技术点 PaloAlto Traps(EDR解决方案)基于行为封锁和标记许多黑客工具. 0x2 绕过方法 最简单的解决方案就是禁用内置实用程序,即; Cytool.Cytool是一个集成命令行 ...
- C Traps:运算
位移 如果sizeof(int) = 4,那么下面的代码的结果是什么? int x=255; printf("%d", x>>34); 实际输出:63 在编译这个代码时 ...
- C Traps:优先级常见错误
逻辑与关系运算符 if (flags & FLAG != 0) {...} 这类错误以前也犯过,因为!=的优先级比&要高所以实际上是这样的 if (flags & (FLAG ...
- [转载] C 陷阱与缺陷( C traps and Pitfalls )
本文转自 https://www.xuebuyuan.com/1951579.html 自己找工作过程中复习过的书包括<C traps and Pitfalls>,<编程珠玑> ...
- <C Traps and Pitfalls>笔记
//------------------------------------------------------------------------------ 2.1 理解函数的声明: 编写一个独立 ...
- 【C traps and pit falls】阅读笔记
已经是第几遍读C 陷阱与缺陷了,某种意义上,这不是一本常读常新的书,大概是因为读一遍过后就记住了. 一.编译器在将程序分解成符号的时候,使用的是大嘴法. 二.使用不对称边界有很多好处. 三.缓冲输出与 ...
- Python Tips and Traps(二)
6.collections 模块还提供有OrderedDict,用于获取有序字典 import collections d = {'b':3, 'a':1,'x':4 ,'z':2} dd = col ...
- Python Tips and Traps(一)
1.如果想得到一个列表的index和内容,可以通过enumerate快速实现 drinks = ['coffee','tea', 'milk', 'water'] for index, drink i ...
随机推荐
- Sql语句中Like嵌套用法
一般的Like用法: SELECT U_NAME FROM T_USER WHERE U_NAME LIKE '%A%' 但是,我此次like关键字后面的对应值是一个变量,需要用select语句来实现 ...
- 2019-2020-1 20199302《Linux内核原理与分析》第七周作业
第六章 进程的描述和进程的创建 (一)进程的描述 1.OS的三大管理功能:(1)进程管理(进程)(2)内存管理(虚拟内存)(3)文件系统(文件) 2.进程的描述:进程控制块PCB 3.在Linux内核 ...
- WinDbg常用命令系列---.cmdtree
.cmdtree 简介 使用形式 .cmdtree cmdfile 参数 cmdfile命令文件,包含多个你需要的命令.必须是一个文本档 使用步骤 1.使用命令创建文本文件test.wl,使用以下示例 ...
- for循环计算
计算0-100之间所有偶数的和: var a = 0 ; //声明一个变量 for (var i = 0; i<100 ; i++){ //起始条件 判断条件 结束条件 if (i%2===0) ...
- cjss 像编写css 一样开发web应用
cjss 提供了使用类似css 的方式编写web 应用 cjss 包含的阶段 data prepare body element 几点说明 并不是所以阶段必须使用,但是每个级别只能存在一个script ...
- Java HotSpot(TM) 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended
Java HotSpot(TM) 64-Bit Server VM warning: Sharing is only supported for boot loader classes because ...
- 时间datetime模块
datetime模块 import datetime --时间加减的模块 #返回当前时间 print(datetime.datetime.now()) --2019-09-28 17:22:14.54 ...
- mysql right() 函数
mysql> ); +---------------------+ | right() | +---------------------+ | dedede | +--------------- ...
- 【DataStage】使用Sequence Job报错:CopyOfseq_ld..JobControl (fatal error from @Coordinator): Sequence job (restartable) will abort due to previous unrecoverable errors
错误描述: 在使用Sequence Job加载作业的时候,报了个错,详细错误内容如下: 出现这个错误的原因是由于以下配置问题,Excution action的状态为Run造成. 解决方案: 将Excu ...
- OpenFOAM计算结果转换到CFD-Post当中处理
我们编写如下的Python代码 源代码: