結果

問題 No.4 おもりと天秤
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-02 18:59:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,679 bytes
コンパイル時間 3,126 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 52,276 KB
最終ジャッジ日時 2024-07-05 17:30:00
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,032 KB
testcase_01 AC 49 ms
36,700 KB
testcase_02 AC 50 ms
37,112 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 51 ms
36,876 KB
testcase_07 WA -
testcase_08 AC 51 ms
36,936 KB
testcase_09 AC 50 ms
36,468 KB
testcase_10 WA -
testcase_11 AC 51 ms
37,112 KB
testcase_12 AC 50 ms
36,876 KB
testcase_13 AC 49 ms
36,368 KB
testcase_14 AC 48 ms
36,584 KB
testcase_15 AC 48 ms
36,900 KB
testcase_16 WA -
testcase_17 AC 49 ms
36,848 KB
testcase_18 AC 49 ms
37,124 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No004 {

    static long balance;
    static long sum;

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int N = Integer.parseInt(br.readLine());
            long[] W = strTointArray(br.readLine());
            for (long l : W) {
                balance = balance + l;
            }
            if (balance % 2 != 0) {
                System.out.println("impossible");
            } else {
                balance = balance / 2;
                if (dfs(W, 0, -1)) {
                    System.out.println("possible");
                } else {
                    System.out.println("impossible");
                }
            }

        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

    static boolean dfs(long[] W, long w, int i) {

        if (balance == sum) {
            return true;
        }

        if (balance < sum) {
            return false;
        }

        if (W.length <= i) {
            return false;
        }

        sum = sum + w;
        if (dfs(W, W[i+1], i + 1)) {
            return true;
        }
        if (dfs(W, 0, i + 1)) {
            return true;
        }

        return false;
    }

    static long[] strTointArray(String S) {
        String[] strArray = S.split(" ");
        long[] longArray = new long[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            longArray[i] = Long.parseLong(strArray[i]);
        }
        return longArray;
    }
}
0