結果

問題 No.602 隠されていたゲーム2
ユーザー 37zigen37zigen
提出日時 2017-12-02 14:14:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,137 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 79,972 KB
実行使用メモリ 62,112 KB
最終ジャッジ日時 2024-05-06 01:43:29
合計ジャッジ時間 9,096 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,304 KB
testcase_01 AC 111 ms
40,988 KB
testcase_02 AC 109 ms
41,112 KB
testcase_03 AC 97 ms
40,232 KB
testcase_04 AC 110 ms
41,772 KB
testcase_05 AC 99 ms
40,088 KB
testcase_06 AC 108 ms
41,332 KB
testcase_07 AC 97 ms
40,344 KB
testcase_08 AC 99 ms
40,660 KB
testcase_09 AC 108 ms
41,336 KB
testcase_10 AC 98 ms
40,264 KB
testcase_11 AC 99 ms
39,952 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 107 ms
41,456 KB
testcase_15 AC 109 ms
41,516 KB
testcase_16 AC 314 ms
46,792 KB
testcase_17 AC 418 ms
48,820 KB
testcase_18 AC 604 ms
55,932 KB
testcase_19 AC 640 ms
54,564 KB
testcase_20 AC 549 ms
56,788 KB
testcase_21 AC 562 ms
56,412 KB
testcase_22 AC 713 ms
56,988 KB
testcase_23 AC 543 ms
62,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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, p2 = 0;
				for (p1 = 0; p1 < evenD.length; ++p1) {
					while (p2 + 1 < oddD.length && (evenD[p1] + oddD[p2] < x + y || x + y < evenD[p1] - oddD[p2]))
						++p2;
					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));
	}

}
0