結果
問題 | No.674 n連勤 |
ユーザー | nebukuro09 |
提出日時 | 2018-04-13 23:03:28 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,183 bytes |
コンパイル時間 | 2,105 ms |
コンパイル使用メモリ | 189,312 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2024-06-13 00:25:05 |
合計ジャッジ時間 | 3,449 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 33 ms
6,944 KB |
testcase_14 | AC | 34 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 33 ms
6,940 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, std.bitmanip; void main() { immutable long MAX = 10L^18+10; auto s = readln.split.map!(to!long); auto D = s[0]; auto Q = s[1]; auto rbt = redBlackTree!(Tuple!(long, long))(); long ans = 0; while (Q--) { s = readln.split.map!(to!long); auto a = s[0]; auto b = s[1]; auto lb = rbt.lowerBound(tuple(a+1, b)); auto ub = rbt.upperBound(tuple(a-1, b)); bool flag = 0; if (!lb.empty) { auto left = lb.back; if (a <= left[1] + 1) { rbt.removeKey(left); a = min(a, left[0]); b = max(b, left[1]); } } if (!ub.empty) { auto right = ub.front; if (b + 1 >= right[0]) { rbt.removeKey(right); a = min(a, right[0]); b = max(b, right[1]); } } ans = max(ans, b - a + 1); ans.writeln; rbt.insert(tuple(a, b)); } }