結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | 37zigen |
提出日時 | 2017-12-03 01:17:00 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 883 ms / 2,000 ms |
コード長 | 2,288 bytes |
コンパイル時間 | 3,594 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 63,472 KB |
最終ジャッジ日時 | 2024-05-09 11:34:26 |
合計ジャッジ時間 | 11,144 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
41,224 KB |
testcase_01 | AC | 132 ms
41,676 KB |
testcase_02 | AC | 133 ms
41,932 KB |
testcase_03 | AC | 136 ms
41,552 KB |
testcase_04 | AC | 133 ms
41,640 KB |
testcase_05 | AC | 136 ms
41,096 KB |
testcase_06 | AC | 135 ms
41,616 KB |
testcase_07 | AC | 135 ms
41,436 KB |
testcase_08 | AC | 132 ms
41,248 KB |
testcase_09 | AC | 134 ms
41,972 KB |
testcase_10 | AC | 133 ms
41,304 KB |
testcase_11 | AC | 129 ms
41,452 KB |
testcase_12 | AC | 126 ms
41,344 KB |
testcase_13 | AC | 129 ms
41,572 KB |
testcase_14 | AC | 135 ms
41,512 KB |
testcase_15 | AC | 130 ms
41,228 KB |
testcase_16 | AC | 343 ms
48,116 KB |
testcase_17 | AC | 485 ms
48,604 KB |
testcase_18 | AC | 721 ms
54,060 KB |
testcase_19 | AC | 782 ms
53,544 KB |
testcase_20 | AC | 731 ms
63,472 KB |
testcase_21 | AC | 704 ms
60,880 KB |
testcase_22 | AC | 883 ms
56,956 KB |
testcase_23 | AC | 701 ms
60,840 KB |
ソースコード
import java.util.Arrays; import java.util.HashSet; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n; long[] d; long x, y; n = sc.nextInt(); d = new long[n]; for (int i = 0; i < n; ++i) d[i] = sc.nextLong(); Arrays.sort(d); x = sc.nextLong(); y = sc.nextLong(); x = Math.abs(x); y = Math.abs(y); System.out.println(solve(n, d, x, y)); } static int solve(int n, long[] d, long x, long y) { if (x < y) { x ^= y; y ^= x; x ^= y; } if (x == 0 && y == 0) { return 0; } for (int i = 0; i < n; ++i) { if (d[i] == x + y) { return 1; } } HashSet<Long> set = new HashSet(); for (int i = 0; i < n; ++i) { set.add(d[i]); } for (int i = 0; i < n; ++i) { if (!set.contains(x + y - d[i]) && !set.contains(d[i] - x - y) && (!set.contains(d[i] - x + y) || d[i] < x) && (!set.contains(d[i] + x - y) || d[i] < y)) continue; return 2; } long[] evenD = new long[n]; long[] oddD = new long[n]; int oddp = 0, evenp = 0; for (int i = 0; i < n; ++i) { if (d[i] % 2 == 0) evenD[evenp++] = d[i]; else oddD[oddp++] = d[i]; } evenD = Arrays.copyOf(evenD, evenp); oddD = Arrays.copyOf(oddD, oddp); Arrays.sort(evenD); Arrays.sort(oddD); if ((x - y) % 2 == 0) { if (2 * Math.max(evenD.length > 0 ? evenD[evenD.length - 1] : 0, oddD.length > 0 ? oddD[oddD.length - 1] : 0) >= x + y) { return 2; } } else if (evenD.length > 0 && oddD.length > 0) { for (int t = 0; t < 2; ++t) { int p1 = 0; for (p1 = 0; p1 < evenD.length; ++p1) { int q1 = Arrays.binarySearch(oddD, x + y - evenD[p1]); if (q1 < 0) q1 = -q1 - 1; int q2 = Arrays.binarySearch(oddD, evenD[p1] - x - y); if (q2 < 0) q2 = -q2 - 1; int p2 = Math.max(q1, q2); if (p2 >= oddD.length) continue; if (evenD[p1] + oddD[p2] >= x + y && x + y >= evenD[p1] - oddD[p2] && evenD[p1] - oddD[p2] >= Math.min(x, y) - Math.max(x, y)) { return 2; } } long[] tmp = Arrays.copyOf(evenD, evenD.length); evenD = oddD; oddD = tmp; } } return -1; } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }