結果
問題 | No.649 ここでちょっとQK! |
ユーザー | nanae |
提出日時 | 2018-02-09 23:48:29 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 297 ms / 3,000 ms |
コード長 | 2,317 bytes |
コンパイル時間 | 908 ms |
コンパイル使用メモリ | 113,076 KB |
実行使用メモリ | 25,784 KB |
最終ジャッジ日時 | 2024-06-12 23:49:52 |
合計ジャッジ時間 | 6,663 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 173 ms
7,008 KB |
testcase_04 | AC | 253 ms
24,724 KB |
testcase_05 | AC | 257 ms
25,784 KB |
testcase_06 | AC | 209 ms
10,100 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 140 ms
10,816 KB |
testcase_13 | AC | 140 ms
10,184 KB |
testcase_14 | AC | 139 ms
10,296 KB |
testcase_15 | AC | 137 ms
11,128 KB |
testcase_16 | AC | 136 ms
10,636 KB |
testcase_17 | AC | 151 ms
11,020 KB |
testcase_18 | AC | 171 ms
21,452 KB |
testcase_19 | AC | 183 ms
22,964 KB |
testcase_20 | AC | 205 ms
23,884 KB |
testcase_21 | AC | 216 ms
22,968 KB |
testcase_22 | AC | 235 ms
24,440 KB |
testcase_23 | AC | 246 ms
25,308 KB |
testcase_24 | AC | 260 ms
25,384 KB |
testcase_25 | AC | 277 ms
25,372 KB |
testcase_26 | AC | 297 ms
24,856 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 116 ms
10,452 KB |
testcase_31 | AC | 121 ms
9,640 KB |
testcase_32 | AC | 1 ms
6,940 KB |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | AC | 1 ms
6,944 KB |
testcase_35 | AC | 1 ms
6,944 KB |
ソースコード
import std.stdio, std.string, std.conv; import std.range, std.algorithm, std.array; void main() { import std.typecons : Tuple; alias Query = Tuple!(int, "type", long, "value"); int q, k; scan(q, k); auto qs = new Query[](q); auto a = new long[](0); foreach (i ; 0 .. q) { auto line = readln.split.to!(long[]); if (line.length == 1) { qs[i] = Query(2, -1); } else { qs[i] = Query(1, line[1]); a ~= line[1]; } } a = a.sort().uniq.array; int[long] map; foreach (i, ai; a) { map[ai] = i.to!int; } auto ft = FenwickTree!(int)(q); foreach (i ; 0 .. q) { if (qs[i].type == 2) { if (ft.sum(q) < k) { writeln(-1); } else { int btm = 0, top = q; while (top - btm > 1) { int mid = (top + btm) / 2; if (ft.sum(mid) >= k) { top = mid; } else { btm = mid; } } writeln(a[top-1]); ft.add(top-1, -1); } } else { ft.add(map[qs[i].value], 1); } } } struct FenwickTree(T) { private { int size; T[] data; } this (int N) { size = N + 1; data = new T[](size); } void add(int i, int x) { i++; while (i < size) { data[i] += x; i += i & (-i); } } T sum(int r) { T res = 0; while (r > 0) { res += data[r]; r -= r & (-r); } return res; } } void scan(T...)(ref T args) { import std.stdio : readln; import std.algorithm : splitter; import std.conv : to; import std.range.primitives; auto line = readln().splitter(); foreach (ref arg; args) { arg = line.front.to!(typeof(arg)); line.popFront(); } assert(line.empty); } void fillAll(R, T)(ref R arr, T value) { static if (is(typeof(arr[] = value))) { arr[] = value; } else { foreach (ref e; arr) { fillAll(e, value); } } }