結果
問題 | No.674 n連勤 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-04-13 23:19:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,358 bytes |
コンパイル時間 | 1,084 ms |
コンパイル使用メモリ | 97,712 KB |
実行使用メモリ | 8,624 KB |
最終ジャッジ日時 | 2024-06-26 21:54:50 |
合計ジャッジ時間 | 2,877 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 11 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 92 ms
5,376 KB |
testcase_14 | AC | 137 ms
8,496 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 138 ms
8,240 KB |
ソースコード
#include<algorithm> #include<iostream> #include<vector> #include<map> using namespace std; typedef long long lint; typedef vector<int>vi; typedef pair<int,int>pii; #define rep(i,n)for(int i=0;i<(int)(n);++i) const int N=90000; const int W=300; vector<lint> coord; map<lint,int> tbl; lint u[N]; struct iroha{ lint s,e,m; iroha():s(0),e(0),m(0){} iroha(lint s,lint e,lint m):s(s),e(e),m(m){} iroha operator*(const iroha &o){ if(s==m){ return iroha(m+o.s,o.e,max(o.m,m+o.s)); } if(o.s==o.m){ return iroha(s,e+o.s,max(m,e+o.s)); } return iroha(s,o.e,max(m,max(o.m,e+o.s))); } }; iroha meg[W]; int pop[W]; void tap(int b){ lint s=0; lint cur=0; lint ma=0; bool all=1; rep(i,W){ if(u[b*W+i]){ lint dif=coord[b*W+i+1]-coord[b*W+i]; if(all)s+=dif; cur+=dif; ma=max(ma,cur); }else{ cur=0; all=0; } } meg[b]=iroha(s,cur,ma); } void update_range(int l,int r){ int b=l/W; if(pop[b]==W)return; for(int i=l;i<r;++i){ pop[b]+=1-u[i]; u[i]=1; } tap(b); } void update(int l,int r){ int lb=(l+W-1)/W; int rb=r/W; if(lb>rb){ update_range(l,r); }else{ update_range(l,lb*W); update_range(rb*W,r); for(int i=lb;i<rb;++i){ lint dif=coord[i*W+W]-coord[i*W]; meg[i]=iroha(dif,dif,dif); pop[i]=W; } } } iroha query_range(int l,int r){ iroha acc(0,0,0); for(int i=l;i<r;++i){ lint dif=u[i]?coord[i+1]-coord[i]:0; acc=acc*(iroha(dif,dif,dif)); } return acc; } lint query(int l,int r){ int lb=(l+W-1)/W; int rb=r/W; iroha res; if(lb>rb){ res=query_range(l,r); }else{ res=query_range(l,lb*W); for(int i=lb;i<rb;++i){ res=res*meg[i]; } res=res*query_range(rb*W,r); } return res.m; } int main(){ lint d; int q; cin>>d>>q; vector<lint> a(q),b(q); rep(i,q){ cin>>a[i]>>b[i]; b[i]++; coord.push_back(a[i]); coord.push_back(b[i]); } coord.push_back(0); coord.push_back(d); sort(coord.begin(),coord.end()); coord.erase(unique(coord.begin(),coord.end()),coord.end()); rep(i,coord.size())tbl[coord[i]]=i; vi ca(q),cb(q); rep(i,q){ ca[i]=tbl[a[i]]; cb[i]=tbl[b[i]]; } rep(i,q){ update(ca[i],cb[i]); cout<<query(0,N)<<endl; if(0){ rep(j,20)cerr<<" "<<u[j]; cerr<<endl; } } }