結果

問題 No.4 おもりと天秤
ユーザー mitsuomitsuo
提出日時 2016-05-05 20:53:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 1,245 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 79,728 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-06-26 09:33:19
合計ジャッジ時間 6,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,644 KB
testcase_01 AC 109 ms
40,256 KB
testcase_02 AC 114 ms
40,516 KB
testcase_03 AC 126 ms
41,348 KB
testcase_04 AC 113 ms
40,516 KB
testcase_05 AC 138 ms
41,652 KB
testcase_06 AC 123 ms
41,488 KB
testcase_07 AC 136 ms
41,480 KB
testcase_08 AC 114 ms
40,388 KB
testcase_09 AC 144 ms
41,740 KB
testcase_10 AC 142 ms
41,452 KB
testcase_11 AC 125 ms
41,628 KB
testcase_12 AC 121 ms
41,360 KB
testcase_13 AC 125 ms
41,412 KB
testcase_14 AC 126 ms
41,280 KB
testcase_15 AC 125 ms
40,904 KB
testcase_16 AC 121 ms
41,244 KB
testcase_17 AC 127 ms
41,512 KB
testcase_18 AC 135 ms
41,496 KB
testcase_19 AC 140 ms
41,624 KB
testcase_20 AC 140 ms
41,660 KB
testcase_21 AC 140 ms
41,836 KB
testcase_22 AC 143 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q4;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	static int[] Ws;
	static boolean[][] dp;

	public static String solve(List<String> in) {
		int N = Integer.valueOf(in.get(0));
		String[] W = in.get(1).split(" ");

		boolean res = false;

		Ws = new int[N];
		int total = 0;
		for (int i = 0; i < N; i++) {
			Ws[i] = Integer.valueOf(W[i]);
			total += Ws[i];
		}
		Arrays.sort(Ws);

		if (total % 2 == 1) {
			res = false;
		} else {
			res = dfs(N, Ws, total / 2);
		}

		return res ? "possible" : "impossible";
	}

	private static boolean dfs(int N, int[] a, int K) {
		dp = new boolean[N + 1][];
		for (int i = 0; i < dp.length; i++) {
			dp[i] = new boolean[K + 1];
		}
		dp[0][0] = true;

		for (int i = 0; i < N; i++) {
			for (int j = 0; j <= K; j++) {
				dp[i + 1][j] |= dp[i][j];
				if (0 <= j - a[i]) {
					dp[i + 1][j] |= dp[i][j - a[i]];
				}
			}
		}
		return dp[N][K];
	}
}
0