結果
問題 | No.674 n連勤 |
ユーザー | nanae |
提出日時 | 2018-04-30 11:40:54 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 3,014 bytes |
コンパイル時間 | 1,009 ms |
コンパイル使用メモリ | 118,116 KB |
実行使用メモリ | 10,908 KB |
最終ジャッジ日時 | 2024-06-13 00:57:38 |
合計ジャッジ時間 | 2,474 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 14 ms
6,940 KB |
testcase_12 | AC | 6 ms
6,944 KB |
testcase_13 | AC | 39 ms
6,944 KB |
testcase_14 | AC | 99 ms
10,428 KB |
testcase_15 | AC | 70 ms
9,116 KB |
testcase_16 | AC | 93 ms
9,484 KB |
testcase_17 | AC | 87 ms
9,592 KB |
testcase_18 | AC | 56 ms
10,908 KB |
testcase_19 | AC | 130 ms
9,168 KB |
コンパイルメッセージ
Main.d(28): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`
ソースコード
import std.stdio, std.string, std.conv; import std.range, std.algorithm, std.array, std.typecons; import std.math, std.numeric; alias Seg = Tuple!(long, "l", long, "r"); void main() { long d; int q; scan(d, q); long[] a; Seg[] ss = new Seg[](q); foreach (i ; 0 .. q) { long li, ri; scan(li, ri); ri++; ss[i] = Seg(li, ri); a ~= li; a ~= ri; } a = a.sort().uniq().array; debug { writeln("a:", a); } int[long] map; long[] rmap = new long[](2*q); foreach (int i, ai; a) { map[ai] = i; rmap[i] = ai; } debug { writeln("map:", map); writeln("rmap:", rmap); } auto sd = SqrtDecomp(2*q); long ans; foreach (i ; 0 .. q) { int l = min(map[ss[i].l], sd.query(map[ss[i].l]).l.to!int); int r = max(map[ss[i].r], sd.query(map[ss[i].r]).r.to!int); ans = max(ans, rmap[r] - rmap[l]); sd.update(l, r + 1, Seg(l, r)); writeln(ans); debug { writefln("(%d, %d)", l, r); writeln(sd.bucket); writeln(sd.data); } } } struct SqrtDecomp { private { enum root = 512; enum inf = 10^^9; Seg[] data; int N; Seg[] bucket; int K; } this(int n) { K = (n + root - 1) / root; N = K * root; data = new Seg[](N); data[] = Seg(inf, -inf); bucket = new Seg[](K); bucket[] = Seg(inf, -inf); } Seg query(int x) { int k = x / root; if (bucket[k].l == inf) { return data[x]; } else { foreach (i ; k * root .. (k + 1) * root) { data[i] = bucket[k]; } bucket[k] = Seg(inf, -inf); return data[x]; } } void update(int l, int r, Seg s) { foreach (k ; 0 .. K) { int lb = k * root, rb = (k + 1) * root; if (r <= lb || rb <= l) continue; if (l <= lb && rb <= r) { bucket[k] = s; } else { if (bucket[k].l != inf) { foreach (i ; k*root .. (k+1)*root) { data[i] = bucket[k]; } bucket[k] = Seg(inf, -inf); } foreach (i ; max(l, lb) .. min(r, rb)) { data[i] = s; } } } } } 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); } } }