結果
問題 | No.318 学学学学学 |
ユーザー | 👑 CleyL |
提出日時 | 2021-12-11 14:37:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 143 ms / 2,000 ms |
コード長 | 915 bytes |
コンパイル時間 | 1,008 ms |
コンパイル使用メモリ | 88,280 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-07-19 19:38:55 |
合計ジャッジ時間 | 4,950 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
5,248 KB |
testcase_01 | AC | 20 ms
5,376 KB |
testcase_02 | AC | 25 ms
6,016 KB |
testcase_03 | AC | 18 ms
5,376 KB |
testcase_04 | AC | 23 ms
5,504 KB |
testcase_05 | AC | 143 ms
15,616 KB |
testcase_06 | AC | 111 ms
12,288 KB |
testcase_07 | AC | 100 ms
10,496 KB |
testcase_08 | AC | 87 ms
8,704 KB |
testcase_09 | AC | 76 ms
7,424 KB |
testcase_10 | AC | 62 ms
6,144 KB |
testcase_11 | AC | 138 ms
15,872 KB |
testcase_12 | AC | 101 ms
11,264 KB |
testcase_13 | AC | 88 ms
9,600 KB |
testcase_14 | AC | 72 ms
8,192 KB |
testcase_15 | AC | 65 ms
7,168 KB |
testcase_16 | AC | 53 ms
6,016 KB |
testcase_17 | AC | 87 ms
12,544 KB |
testcase_18 | AC | 80 ms
12,416 KB |
testcase_19 | AC | 80 ms
12,928 KB |
testcase_20 | AC | 35 ms
6,144 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <queue> #include <vector> #include <map> using namespace std; int main(){ int n;cin>>n; map<int,pair<int,int>> A; for(int i = 0; n > i; i++){ int t;cin>>t; if(!A[t].first){ A[t].first = i+1; } A[t].second = i+1; } vector<int> ret[n+1],ans(n); for(auto x: A){ ret[x.second.first-1].push_back(x.first); ret[x.second.second].push_back(-x.first); } priority_queue<int> C; priority_queue<int> eraser; for(int i = 0; n > i; i++){ for(int j = 0; ret[i].size() > j; j++){ if(ret[i][j]>0){ C.push(ret[i][j]); }else if(ret[i][j] < 0){ eraser.push(-1*ret[i][j]); } } while(C.size() && eraser.size() && C.top() == eraser.top()){ C.pop(); eraser.pop(); } ans[i] = C.top(); } for(int i = 0; n > i; i++){ cout << ans[i]; if(i+1 != n)cout << " "; } cout << endl; }