結果

問題 No.602 隠されていたゲーム2
ユーザー 37zigen37zigen
提出日時 2017-12-03 01:16:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,276 bytes
コンパイル時間 3,670 ms
コンパイル使用メモリ 80,656 KB
実行使用メモリ 65,184 KB
最終ジャッジ日時 2024-05-06 02:04:46
合計ジャッジ時間 11,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,804 KB
testcase_01 AC 112 ms
41,280 KB
testcase_02 AC 118 ms
41,268 KB
testcase_03 AC 118 ms
41,000 KB
testcase_04 AC 107 ms
39,952 KB
testcase_05 AC 117 ms
41,152 KB
testcase_06 AC 116 ms
41,012 KB
testcase_07 AC 122 ms
41,500 KB
testcase_08 RE -
testcase_09 AC 118 ms
41,168 KB
testcase_10 AC 106 ms
40,280 KB
testcase_11 AC 114 ms
41,296 KB
testcase_12 AC 104 ms
39,928 KB
testcase_13 AC 114 ms
41,292 KB
testcase_14 AC 116 ms
41,376 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 425 ms
48,524 KB
testcase_18 AC 642 ms
53,868 KB
testcase_19 AC 682 ms
55,096 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 753 ms
56,804 KB
testcase_23 AC 620 ms
60,764 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;
				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 (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;

	}

	// 4,1  -1,9   d=5,10 x=3,y=10

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0