結果
問題 | No.318 学学学学学 |
ユーザー | hirokazu1020 |
提出日時 | 2015-12-11 00:17:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 119 ms / 2,000 ms |
コード長 | 1,756 bytes |
コンパイル時間 | 972 ms |
コンパイル使用メモリ | 98,116 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-06-22 14:34:49 |
合計ジャッジ時間 | 4,082 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,816 KB |
testcase_01 | AC | 19 ms
6,940 KB |
testcase_02 | AC | 24 ms
6,944 KB |
testcase_03 | AC | 17 ms
6,940 KB |
testcase_04 | AC | 20 ms
6,940 KB |
testcase_05 | AC | 117 ms
11,392 KB |
testcase_06 | AC | 108 ms
8,320 KB |
testcase_07 | AC | 96 ms
7,296 KB |
testcase_08 | AC | 87 ms
6,940 KB |
testcase_09 | AC | 77 ms
6,940 KB |
testcase_10 | AC | 62 ms
6,940 KB |
testcase_11 | AC | 119 ms
11,648 KB |
testcase_12 | AC | 92 ms
8,320 KB |
testcase_13 | AC | 79 ms
7,296 KB |
testcase_14 | AC | 69 ms
6,944 KB |
testcase_15 | AC | 60 ms
6,940 KB |
testcase_16 | AC | 53 ms
6,940 KB |
testcase_17 | AC | 75 ms
8,448 KB |
testcase_18 | AC | 74 ms
8,320 KB |
testcase_19 | AC | 83 ms
8,448 KB |
testcase_20 | AC | 37 ms
6,940 KB |
testcase_21 | AC | 3 ms
6,944 KB |
testcase_22 | AC | 3 ms
6,940 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 3 ms
6,940 KB |
testcase_26 | AC | 3 ms
6,944 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,944 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include<sstream> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<climits> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> #include<bitset> #include<tuple> #include<unordered_set> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) #define indexOf(v,x) (find(all(v),x)-v.begin()) class RangeSubstituteTree {//範囲代入 int n, t; std::vector<int> ts, val; void substitute(int a, int b, int x, int k, int l, int r) { if (r <= a || b <= l)return; if (a <= l && r <= b) { ts[k] = t; val[k] = x; return; } int m = (l + r) / 2; substitute(a, b, x, 2 * k + 1, l, m); substitute(a, b, x, 2 * k + 2, m, r); } public: RangeSubstituteTree(int n = 1 << 20) :n(n) { ts.assign(2 * n - 1, t = 0); val.assign(2 * n - 1, 0); } void substitute(int a, int b, int x) {//[a,b)にxを代入 t++; substitute(a, b, x, 0, 0, n); } int get(int k)const {//k番目の値 int res, s; k += n - 1; res = val[k]; s = ts[k]; while (k>0) { k = (k - 1) / 2; if (s<ts[k]) { s = ts[k]; res = val[k]; } } return res; } }; int main() { map<int, pair<int, int>> idxs; int n; cin >> n; rep(i,n) { int a; cin >> a; if (idxs.find(a) == idxs.end()) { idxs[a] = make_pair(i,i); } else { idxs[a].second = i; } } RangeSubstituteTree rst(1<<17); for (auto p:idxs) { rst.substitute(p.second.first, p.second.second + 1, p.first); } rep(i,n-1) { cout << rst.get(i) << ' '; } cout << rst.get(n - 1) << endl; }