noip提高組2012 借教室(luogu 1083)
阿新 • • 發佈:2017-09-18
noip提高組 printf www. cor print class += urn 每天
原題鏈接:https://www.luogu.org/problem/show?pid=1083
坐在我對面的dalao瞬間就寫出了線段樹的解法,蒟蒻線段樹太弱,只能寫前綴和。
大致分析了一下,二分答案每天能否能滿足當天的需求,能就向後找,不能就向前找,
找到最後都能滿足,那就是能滿足了,不然,此時就會停留在第一個不能滿足的時刻。
(終於會用插入代碼的操作了(我太弱了。。。))
#include<cstdio> #include<cstring> using namespace std; void read(int &y) { y=0;char x=getchar();while(x<‘0‘||x>‘9‘) x=getchar(); while(x>=‘0‘&&x<=‘9‘) { y=y*10+x-‘0‘; x=getchar(); } } int n,m,d[1000005],s[1000005],t[1000005]; int sum[1000005],a[1000005]; int check(int x) { memset(sum,0,sizeof(sum)); for(int i=1;i<=x;i++) { sum[s[i]]-=d[i]; sum[t[i]+1]+=d[i]; } for(int i=1;i<=n;i++) { sum[i]+=sum[i-1]; if(a[i]+sum[i]<0) return 0; } return 1; } int main() { read(n);read(m); for(int i=1;i<=n;i++) read(a[i]); for(int i=1;i<=m;i++) { read(d[i]); read(s[i]); read(t[i]); }int l=1,r=m,mid; while(l<r) { mid=(l+r)>>1; if(check(mid)==0) r=mid; else l=mid+1; } if(r==m) printf("0"); else printf("-1\n%d",r); return 0; }
noip提高組2012 借教室(luogu 1083)