結果

問題 No.4 おもりと天秤
ユーザー htensaihtensai
提出日時 2019-12-26 18:26:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 1,246 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 77,352 KB
実行使用メモリ 54,708 KB
最終ジャッジ日時 2024-10-04 16:21:42
合計ジャッジ時間 5,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
53,168 KB
testcase_01 AC 108 ms
54,156 KB
testcase_02 AC 108 ms
53,828 KB
testcase_03 AC 107 ms
53,928 KB
testcase_04 AC 109 ms
53,840 KB
testcase_05 AC 125 ms
54,284 KB
testcase_06 AC 105 ms
53,756 KB
testcase_07 AC 140 ms
54,384 KB
testcase_08 AC 116 ms
53,912 KB
testcase_09 AC 131 ms
54,116 KB
testcase_10 AC 137 ms
53,960 KB
testcase_11 AC 106 ms
54,044 KB
testcase_12 AC 98 ms
52,736 KB
testcase_13 AC 108 ms
54,036 KB
testcase_14 AC 93 ms
52,576 KB
testcase_15 AC 109 ms
53,932 KB
testcase_16 AC 109 ms
54,324 KB
testcase_17 AC 96 ms
52,848 KB
testcase_18 AC 144 ms
54,556 KB
testcase_19 AC 145 ms
54,476 KB
testcase_20 AC 131 ms
54,696 KB
testcase_21 AC 126 ms
54,180 KB
testcase_22 AC 133 ms
54,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    static boolean[][] dp;
    static boolean[][] used;
    static int[] arr;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int total = 0;
        arr = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            arr[i] = sc.nextInt();
            total += arr[i];
        }
        if (total % 2 == 1) {
            System.out.println("impossible");
            return;
        }
        dp = new boolean[n + 1][total / 2 + 1];
        used = new boolean[n + 1][total / 2 + 1];
        if (dfw(n, total / 2)) {
            System.out.println("possible");
        } else {
            System.out.println("impossible");
        }
    }
    
    static boolean dfw(int idx, int value) {
        if (value < 0) {
            return false;
        }
        if (value == 0) {
            return true;
        }
        if (idx == 0) {
            return false;
        }
        if (used[idx][value]) {
            return dp[idx][value];
        }
        used[idx][value] = true;
        dp[idx][value] = (dfw(idx - 1, value) | dfw(idx - 1, value - arr[idx]));
        return dp[idx][value];
    }
}
0