結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | nanae |
提出日時 | 2017-12-02 00:59:23 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 1,788 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 113,808 KB |
実行使用メモリ | 6,308 KB |
最終ジャッジ日時 | 2024-06-12 22:45:56 |
合計ジャッジ時間 | 1,808 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | AC | 15 ms
5,376 KB |
testcase_18 | AC | 35 ms
5,476 KB |
testcase_19 | AC | 44 ms
6,308 KB |
testcase_20 | AC | 34 ms
5,876 KB |
testcase_21 | AC | 26 ms
5,792 KB |
testcase_22 | AC | 48 ms
6,180 KB |
testcase_23 | AC | 26 ms
5,560 KB |
ソースコード
import std.stdio, std.string, std.conv, std.algorithm, std.numeric; import std.range, std.array, std.math, std.typecons, std.container, core.bitop; void main() { int n; scan(n); auto d = readln.split.to!(int[]); int x, y; scan(x, y); long L = abs(x) + abs(y); if (L == 0) { writeln(0); return; } foreach (i ; 0 .. n) { if (d[i] == L) { writeln(1); return; } } d.sort(); auto ev = new int[](0); auto od = new int[](0); foreach (i ; 0 .. n) { if (d[i] & 1) od ~= d[i]; else ev ~= d[i]; } debug { writeln(ev); writeln(od); } foreach (i ; 0 .. n) { long ue = L + d[i], sita; if (d[i] <= L) { sita = L - d[i]; } else { sita = d[i] - L; } if (ue & 1) { auto seg = od.assumeSorted.lowerBound(ue + 1); auto segs = seg.assumeSorted.upperBound(sita -1); if (!segs.empty) { writeln(2); return; } } else { auto seg = ev.assumeSorted.lowerBound(ue+1); auto segs = seg.assumeSorted.upperBound(sita-1); if (!segs.empty) { writeln(2); return; } } } writeln(-1); } void scan(T...)(ref T args) { string[] line = readln.split; 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); } } }