結果
問題 | No.953 席 |
ユーザー | kmjp |
提出日時 | 2019-12-16 01:08:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 439 ms / 2,000 ms |
コード長 | 2,250 bytes |
コンパイル時間 | 2,137 ms |
コンパイル使用メモリ | 194,912 KB |
実行使用メモリ | 20,864 KB |
最終ジャッジ日時 | 2024-07-02 18:44:08 |
合計ジャッジ時間 | 10,942 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 229 ms
16,896 KB |
testcase_03 | AC | 217 ms
16,640 KB |
testcase_04 | AC | 236 ms
16,768 KB |
testcase_05 | AC | 196 ms
16,384 KB |
testcase_06 | AC | 244 ms
16,896 KB |
testcase_07 | AC | 394 ms
18,816 KB |
testcase_08 | AC | 429 ms
20,096 KB |
testcase_09 | AC | 364 ms
18,432 KB |
testcase_10 | AC | 106 ms
8,448 KB |
testcase_11 | AC | 295 ms
16,128 KB |
testcase_12 | AC | 338 ms
19,328 KB |
testcase_13 | AC | 419 ms
20,608 KB |
testcase_14 | AC | 312 ms
18,688 KB |
testcase_15 | AC | 295 ms
18,432 KB |
testcase_16 | AC | 307 ms
18,560 KB |
testcase_17 | AC | 299 ms
19,072 KB |
testcase_18 | AC | 271 ms
18,688 KB |
testcase_19 | AC | 367 ms
20,352 KB |
testcase_20 | AC | 278 ms
18,560 KB |
testcase_21 | AC | 223 ms
17,024 KB |
testcase_22 | AC | 372 ms
19,584 KB |
testcase_23 | AC | 266 ms
17,664 KB |
testcase_24 | AC | 261 ms
17,792 KB |
testcase_25 | AC | 439 ms
20,864 KB |
testcase_26 | AC | 191 ms
16,256 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N,K1,K2,M; int order[101010]; ll X[101010],Y[101010]; set<pair<int,int>> A; set<pair<int,int>> B; map<ll,vector<int>> ev; int ret[101010]; void fix(int x) { if(A.count({order[x],x})==0 && B.count({order[x],x})==0) return; int nei=0; if(x>1&&A.count({order[x-1],x-1})==0 && B.count({order[x-1],x-1})==0) nei++; if(x<N&&A.count({order[x+1],x+1})==0 && B.count({order[x+1],x+1})==0) nei++; if(nei==0) { B.erase({order[x],x}); A.insert({order[x],x}); } else { A.erase({order[x],x}); B.insert({order[x],x}); } } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>K1>>K2; x=0; if(K1<K2) { FOR(i,N) { if(K1-i>=1) order[K1-i]=x++; if(K2+i<=N) order[K2+i]=x++; } } else { FOR(i,N) { if(K1+i<=N) order[K1+i]=x++; if(K2-i>=1) order[K2-i]=x++; } } set<int> S; FOR(i,N) { A.insert({order[i+1],i+1}); S.insert(order[i+1]); } assert(S.size()==N); cin>>M; FOR(i,M) { cin>>X[i]>>Y[i]; ev[X[i]].push_back(M+i); } queue<int> Q; while(ev.size()) { ll t=ev.begin()->first; auto V=ev.begin()->second; ev.erase(ev.begin()); FORR(x,V) { if(x<M) { B.insert({order[ret[x]],ret[x]}); fix(ret[x]); fix(ret[x]-1); fix(ret[x]+1); } else { Q.push(x-M); } } while(Q.size() && (A.size()+B.size())) { x=Q.front(); Q.pop(); if(A.size()) { ret[x]=A.begin()->second; A.erase(A.begin()); } else { ret[x]=B.begin()->second; B.erase(B.begin()); } ev[t+Y[x]].push_back(x); fix(ret[x]-1); fix(ret[x]+1); } } FOR(i,M) cout<<ret[i]<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }