結果
問題 | No.318 学学学学学 |
ユーザー | norioc |
提出日時 | 2020-05-07 12:28:08 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 2,121 bytes |
コンパイル時間 | 2,807 ms |
コンパイル使用メモリ | 180,356 KB |
実行使用メモリ | 34,960 KB |
最終ジャッジ日時 | 2024-06-22 06:54:39 |
合計ジャッジ時間 | 6,275 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
20,972 KB |
testcase_01 | AC | 29 ms
22,944 KB |
testcase_02 | AC | 31 ms
23,580 KB |
testcase_03 | AC | 26 ms
21,852 KB |
testcase_04 | AC | 28 ms
22,128 KB |
testcase_05 | AC | 102 ms
33,740 KB |
testcase_06 | AC | 92 ms
32,384 KB |
testcase_07 | AC | 85 ms
32,624 KB |
testcase_08 | AC | 72 ms
28,200 KB |
testcase_09 | AC | 66 ms
26,200 KB |
testcase_10 | AC | 55 ms
23,964 KB |
testcase_11 | AC | 105 ms
34,960 KB |
testcase_12 | AC | 87 ms
33,748 KB |
testcase_13 | AC | 79 ms
31,364 KB |
testcase_14 | AC | 69 ms
28,188 KB |
testcase_15 | AC | 65 ms
25,980 KB |
testcase_16 | AC | 55 ms
24,040 KB |
testcase_17 | AC | 82 ms
32,496 KB |
testcase_18 | AC | 77 ms
33,068 KB |
testcase_19 | AC | 81 ms
32,868 KB |
testcase_20 | AC | 49 ms
24,076 KB |
testcase_21 | AC | 15 ms
18,952 KB |
testcase_22 | AC | 15 ms
19,028 KB |
testcase_23 | AC | 15 ms
19,072 KB |
testcase_24 | AC | 15 ms
18,932 KB |
testcase_25 | AC | 15 ms
18,956 KB |
testcase_26 | AC | 14 ms
18,880 KB |
testcase_27 | AC | 14 ms
18,888 KB |
testcase_28 | AC | 13 ms
18,952 KB |
ソースコード
import std; const segSize = 1 << 20; int[segSize * 2] seg; int[segSize * 2] segTime; // 更新された時刻 void update(int l, int r, int v, int time) { l += segSize; r += segSize; while (l < r) { if (l % 2 == 1) { seg[l] = v; segTime[l] = time; l++; } l /= 2; if (r % 2 == 1) { seg[r - 1] = v; segTime[r - 1] = time; r--; } r /= 2; } } int get(int ind) { ind += segSize; int v = seg[ind]; int time = segTime[ind]; while (true) { ind /= 2; // 上にのぼる if (ind == 0) break; if (time < segTime[ind]) { // 更新が新しい v = seg[ind]; time = segTime[ind]; } } return v; } // 親の更新を子に伝搬する(親は更新されない) void propagate() { void rec(int ind) { if (ind * 2 >= seg.length) return; int lt = ind * 2; int rt = ind * 2 + 1; if (segTime[ind] > segTime[lt]) { // 左の子: 親の方が新しいなら子に伝搬 seg[lt] = seg[ind]; segTime[lt] = segTime[ind]; } if (segTime[ind] > segTime[rt]) { // 右の子: 親の方が新しいなら子に伝搬 seg[rt] = seg[ind]; segTime[rt] = segTime[ind]; } rec(lt); rec(rt); } rec(1); } void calc(int[] a) { int n = cast(int)a.length; int[int] first, last; foreach_reverse(i; 0..n) first[a[i]] = i; foreach (i; 0..n) last[a[i]] = i; int time = 1; foreach (k; first.keys.sort) { int l = first[k]; int r = last[k]; update(l, r + 1, k, time++); } propagate(); auto ans = seg[segSize..$].take(n).map!text.join(' '); writeln(ans); } void main() { read; auto a = readints; calc(a); } void scan(T...)(ref T a) { string[] ss = readln.split; foreach (i, t; T) a[i] = ss[i].to!t; } T read(T=string)() { return readln.chomp.to!T; } T[] reads(T)() { return readln.split.to!(T[]); } alias readints = reads!int;