結果
問題 | No.2573 moving up |
ユーザー | warabi0906 |
提出日時 | 2023-12-04 17:50:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 942 bytes |
コンパイル時間 | 1,921 ms |
コンパイル使用メモリ | 175,876 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 23:05:53 |
合計ジャッジ時間 | 3,240 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int H,W; cin>>H>>W; int base=0; priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> ap,dap; vector<int> Y(W); for(int i=0;i<W;i++){ int x,y; cin>>x>>y; base+=x-1; ap.push({max(1,y-(x-1)),i}); Y[i]=y; } int rej=0,now=0; int extra=0; vector<short> seen(W,0); for(int i=1;i<=W;i++){ while(ap.size() and ap.top().first==i){ int idx=ap.top().second; ap.pop(); seen[idx]++; now++; dap.push({min(W+1,Y[idx]+1),idx}); } while(dap.size() and dap.top().first==i){ int idx=dap.top().second; dap.pop(); if(seen[idx]<2){ now--; seen[idx]++; rej++; } } if(0<rej){ extra+=(rej--); } else if(0<now){ int idx=dap.top().second; now--; seen[idx]=2; dap.pop(); } else{ int idx=ap.top().first; extra+=ap.top().second-i; seen[idx]=2; ap.pop(); } } cout<<base+extra<<"\n"; }