結果
問題 | No.121 傾向と対策:門松列(その2) |
ユーザー | te-sh |
提出日時 | 2017-05-08 14:25:36 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 1,061 ms / 5,000 ms |
コード長 | 1,351 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 112,080 KB |
実行使用メモリ | 118,592 KB |
最終ジャッジ日時 | 2024-06-12 19:03:16 |
合計ジャッジ時間 | 5,153 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
11,128 KB |
testcase_01 | AC | 49 ms
9,824 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 412 ms
49,328 KB |
testcase_04 | AC | 1,061 ms
118,592 KB |
testcase_05 | AC | 411 ms
46,640 KB |
testcase_06 | AC | 326 ms
45,992 KB |
testcase_07 | AC | 365 ms
46,276 KB |
testcase_08 | AC | 472 ms
47,984 KB |
コンパイルメッセージ
Main.d(10): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto n = readln.chomp.to!size_t; auto ai = readln.split.to!(int[]); auto bi = ai.dup.sort().array.uniq.array; int[int] ci; foreach (int i, b; bi) ci[b] = i + 1; auto di = ai.map!(a => ci[a]).array; auto maxD = di.maxElement; auto bt1 = BiTree!long(maxD + 1); bt1[di[0]] += 1; auto bt2 = BiTree!long(maxD + 1); foreach (d; di[2..$]) bt2[d] += 1; auto ne = bt2[di[0]]; auto r = 0L; foreach (i; 1..n-1) { auto d1 = di[i], d2 = di[i+1]; r += bt1[0..d1] * bt2[0..d1]; r += bt1[d1+1..$] * bt2[d1+1..$]; r -= ne - bt1[d1] * bt2[d1]; bt1[d1] += 1; ne += bt2[d1]; bt2[d2] += -1; ne -= bt1[d2]; } writeln(r); } struct BiTree(T) { const size_t n; T[] buf; this(size_t n) { this.n = n; this.buf = new T[](n + 1); } void opIndexOpAssign(string op)(T val, size_t i) if (op == "+") { ++i; while (i <= n) { buf[i] += val; i += i & -i; } } pure size_t opDollar() { return n; } pure T opIndex(size_t i) const { return opSlice(i, i+1); } pure T opSlice(size_t r, size_t l) const { return get(l) - get(r); } pure T get(size_t i) const { auto s = T(0); while (i > 0) { s += buf[i]; i -= i & -i; } return s; } }