結果
問題 | No.59 鉄道の旅 |
ユーザー | te-sh |
提出日時 | 2016-09-02 17:10:36 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 48 ms / 5,000 ms |
コード長 | 1,016 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 116,864 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-12 04:07:57 |
合計ジャッジ時間 | 1,891 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
9,984 KB |
testcase_01 | AC | 7 ms
9,984 KB |
testcase_02 | AC | 7 ms
9,984 KB |
testcase_03 | AC | 7 ms
9,984 KB |
testcase_04 | AC | 43 ms
10,880 KB |
testcase_05 | AC | 7 ms
9,984 KB |
testcase_06 | AC | 7 ms
9,984 KB |
testcase_07 | AC | 7 ms
9,984 KB |
testcase_08 | AC | 12 ms
10,112 KB |
testcase_09 | AC | 10 ms
10,112 KB |
testcase_10 | AC | 11 ms
10,112 KB |
testcase_11 | AC | 9 ms
10,112 KB |
testcase_12 | AC | 28 ms
10,880 KB |
testcase_13 | AC | 34 ms
10,880 KB |
testcase_14 | AC | 48 ms
10,880 KB |
testcase_15 | AC | 6 ms
9,984 KB |
ソースコード
import std.algorithm, std.array, std.container, std.range, std.bitmanip; import std.numeric, std.math, std.bigint, std.random, core.bitop; import std.string, std.conv, std.stdio, std.typecons; class BiTree { int[] buf; int size; this(int m) { size = m; buf = new int[](size + 1); } int get(int i) { if (!i) return 0; return buf[i] + get(i - (i & -i)); } void add(int i, int v) { if (i > size) return; buf[i] += v; add(i + (i & -i), v); } } const auto maxW = 1000000; void main() { auto rd = readln.split.map!(to!int); auto n = rd[0], k = rd[1]; auto wi = iota(n).map!(_ => readln.chomp.to!int); auto buf = new int[](maxW + 1); auto bitree = new BiTree(maxW); foreach (w; wi) { if (w > 0) { if (bitree.get(maxW) - bitree.get(w - 1) < k) { buf[w] += 1; bitree.add(w, 1); } } else { w = -w; if (buf[w] > 0) { buf[w] -= 1; bitree.add(w, -1); } } } writeln(bitree.get(maxW)); }