結果
問題 | No.953 席 |
ユーザー | mtsd |
提出日時 | 2019-12-16 23:38:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 5,039 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 130,004 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-07-02 20:53:57 |
合計ジャッジ時間 | 5,518 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 85 ms
5,376 KB |
testcase_03 | AC | 82 ms
5,376 KB |
testcase_04 | AC | 86 ms
5,376 KB |
testcase_05 | AC | 72 ms
5,376 KB |
testcase_06 | AC | 85 ms
5,376 KB |
testcase_07 | AC | 119 ms
8,064 KB |
testcase_08 | AC | 133 ms
7,468 KB |
testcase_09 | AC | 105 ms
8,448 KB |
testcase_10 | AC | 35 ms
5,376 KB |
testcase_11 | AC | 94 ms
6,144 KB |
testcase_12 | AC | 107 ms
6,016 KB |
testcase_13 | AC | 120 ms
7,188 KB |
testcase_14 | AC | 101 ms
5,632 KB |
testcase_15 | AC | 99 ms
5,760 KB |
testcase_16 | AC | 100 ms
5,888 KB |
testcase_17 | AC | 92 ms
6,084 KB |
testcase_18 | AC | 89 ms
5,888 KB |
testcase_19 | AC | 107 ms
7,156 KB |
testcase_20 | AC | 91 ms
5,888 KB |
testcase_21 | AC | 83 ms
5,376 KB |
testcase_22 | AC | 107 ms
6,732 KB |
testcase_23 | AC | 93 ms
5,376 KB |
testcase_24 | AC | 92 ms
5,376 KB |
testcase_25 | AC | 131 ms
7,420 KB |
testcase_26 | AC | 44 ms
5,376 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <chrono> #include <climits> #include <cmath> #include <complex> #include <cstring> #include <deque> #include <functional> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <unordered_map> #include <unordered_set> #include <vector> #include <cstdint> using namespace std; typedef long long ll; #define MP make_pair #define PB push_back #define inf 1000000007 #define mod 1000000007 #define rep(i,n) for(int i = 0; i < (int)(n); ++i) #define int long long signed main(){ cin.tie(0); ios::sync_with_stdio(false); int n,k1,k2; bool f = 0; cin >> n >> k1 >> k2; if(k1< k2){ f = 1; } set<int> A,B,C; priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>> > T; int q; cin >> q; rep(i,n){ A.insert(i+1); } int time = 0; vector<int> res(q+1); rep(i,q){ int a,b; cin >> a >> b; time = max(a,time); while(!T.empty()){ auto x = T.top(); if(x.first <= time){ T.pop(); int k = x.second; C.erase(k); if(B.count(k-1)==1){ if(C.count(k-2)==0){ B.erase(k-1); A.insert(k-1); } } if(B.count(k+1)==1){ if(C.count(k+2)==0){ B.erase(k+1); A.insert(k+1); } } if(C.count(k-1)==1||C.count(k+1)==1){ B.insert(k); }else{ A.insert(k); } }else{ break; } } if(C.size()==n){ auto yy = T.top(); time = yy.first; while(!T.empty()){ auto x = T.top(); if(x.first == time){ T.pop(); int k = x.second; C.erase(k); if(B.count(k-1)==1){ if(C.count(k-2)==0){ B.erase(k-1); A.insert(k-1); } } if(B.count(k+1)==1){ if(C.count(k+2)==0){ B.erase(k+1); A.insert(k+1); } } if(C.count(k-1)==1||C.count(k+1)==1){ B.insert(k); }else{ A.insert(k); } }else{ break; } } } if(A.size()!=0){ auto ppp = A.lower_bound(k1); int L = -inf; if(ppp!=A.begin()){ ppp--; L = *ppp; } auto qqq =A.lower_bound(k1); int R = inf; if(qqq!=A.end()){ R = *qqq; } if(f){ if(R-k1 <= k1-L){ res[i+1] = R; }else{ res[i+1] = L; } }else{ if(k1-L <= R-k1){ res[i+1] = L ; }else{ res[i+1] = R; } } }else{ auto ppp = B.lower_bound(k1); int L = -inf; if(ppp!=B.begin()){ ppp--; L = *ppp; } auto qqq =B.lower_bound(k1); int R = inf; if(qqq!=B.end()){ R = *qqq; } if(f){ if(R-k1 <= k1-L){ res[i+1] = R; }else{ res[i+1] = L; } }else{ if(k1-L <= R-k1){ res[i+1] = L ; }else{ res[i+1] = R; } } } A.erase(res[i+1]); B.erase(res[i+1]); C.insert(res[i+1]); if(A.count(res[i+1]-1)){ A.erase(res[i+1]-1); B.insert(res[i+1]-1); } if(A.count(res[i+1]+1)){ A.erase(res[i+1]+1); B.insert(res[i+1]+1); } T.push(MP(time+b,res[i+1])); // cerr << "time:" << time << endl; // cerr << "seat:" << res[i+1] << endl; // for(auto x:A){ // cerr << x << " "; // } // cerr << endl; // for(auto x:B){ // cerr << x << " " ; // } // cerr << endl; // for(auto x:C){ // cerr << x << " "; // } // cerr << endl; } for(int i=1;i<=q;i++){ cout << res[i] << "\n"; } return 0; }