結果
問題 | No.953 席 |
ユーザー | chocorusk |
提出日時 | 2019-12-16 01:41:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,555 bytes |
コンパイル時間 | 1,487 ms |
コンパイル使用メモリ | 134,084 KB |
実行使用メモリ | 13,624 KB |
最終ジャッジ日時 | 2024-07-02 18:49:20 |
合計ジャッジ時間 | 8,179 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 286 ms
13,088 KB |
testcase_08 | AC | 344 ms
12,240 KB |
testcase_09 | AC | 246 ms
13,624 KB |
testcase_10 | AC | 83 ms
6,944 KB |
testcase_11 | AC | 249 ms
10,056 KB |
testcase_12 | RE | - |
testcase_13 | AC | 351 ms
11,508 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int main() { int n, k1, k2; cin>>n>>k1>>k2; //k1--; k2--; int q; cin>>q; int a[100010], b[100010]; using Pi=pair<P, int>; priority_queue<Pi, vector<Pi>, greater<Pi>> v; vector<Pi> vec; //vector<int> time; for(int i=0; i<q; i++){ cin>>a[i]>>b[i]; //b[i]+=a[i]; //v.push({{a[i], i}, 0}); //v.push({{b[i], i}, 1}); //vec.push_back({{a[i], i}, 0}); //vec.push_back({{b[i], i}, 1}); //time.push_back(b[i]); } //sort(vec.begin(), vec.end()); queue<int> que; int cnt=0; priority_queue<int, vector<int>, greater<int>> pque; for(int i=0; i<q; i++){ while(!pque.empty()){ int x=pque.top(); if(x>a[i]) break; cnt--; pque.pop(); if(!que.empty()){ int j=que.front(); que.pop(); a[j]=x; cnt++; pque.push(a[j]+b[j]); } } if(cnt<n){ cnt++; pque.push(a[i]+b[i]); }else{ que.push(i); } } while(!pque.empty()){ int x=pque.top(); //if(x>a[i]) break; cnt--; pque.pop(); if(!que.empty()){ int j=que.front(); que.pop(); a[j]=x; cnt++; pque.push(a[j]+b[j]); } } for(int i=0; i<q; i++){ //cout<<a[i]<<endl; v.push({{a[i], i}, 0}); v.push({{a[i]+b[i], i}, 1}); } // sort(time.begin(), time.end()); // time.erase(unique(time.begin(), time.end()), time.end()); set<int> st1, st2; bool used[100010]={}; for(int i=0; i<=n+1; i++){ st1.insert(i); st2.insert(i); } queue<int> myon; int ans[100010]; while(!v.empty()){ auto p=v.top(); v.pop(); int t=p.second; int i=p.first.second; if(t==0){ auto itr=st1.lower_bound(max(k1, k2)); int x=*itr; itr--; int y=*itr; if(x==n+1 && y==0){ auto itr2=st2.lower_bound(max(k1, k2)); int x2=*itr2; itr2--; int y2=*itr2; if(x2==n+1 && y2==0){ //v.push({{*upper_bound(time.begin(), time.end(), p.first.first), i}, t}); assert(0); continue; }else if(x2==n+1){ x=y2; }else if(y2==0){ x=x2; }else{ if(x2-max(k1, k2)>min(k1, k2)-y2){ x2=y2; }else if(k1<k2 && x2-k2==k1-y2){ x2=y2; } x=x2; } }else if(x==n+1){ x=y; }else if(y==0){ }else{ if(x-max(k1, k2)>min(k1, k2)-y){ x=y; }else if(k1<k2 && x-k2==k1-y){ x=y; } } ans[i]=x; st2.erase(x); st1.erase(x); if(x>1) st1.erase(x-1); if(x<n) st1.erase(x+1); used[x]=1; }else{ int x=ans[i]; used[x]=0; st2.insert(x); if(x-1>0){ if(!used[x-1] && !used[x-2]) st1.insert(x-1); } if(x+1<=n){ if(!used[x+1] && !used[x+2]) st1.insert(x+1); } if(!used[x-1] && !used[x+1]) st1.insert(x); } } for(int i=0; i<q; i++){ cout<<ans[i]<<endl; } return 0; }