結果

問題 No.4 おもりと天秤
ユーザー tentententen
提出日時 2022-08-10 13:04:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 1,636 bytes
コンパイル時間 3,256 ms
コンパイル使用メモリ 78,680 KB
実行使用メモリ 52,216 KB
最終ジャッジ日時 2024-09-20 20:58:20
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,732 KB
testcase_01 AC 47 ms
37,152 KB
testcase_02 AC 54 ms
37,288 KB
testcase_03 AC 48 ms
36,860 KB
testcase_04 AC 49 ms
36,996 KB
testcase_05 AC 111 ms
46,212 KB
testcase_06 AC 48 ms
36,776 KB
testcase_07 AC 104 ms
45,892 KB
testcase_08 AC 58 ms
37,540 KB
testcase_09 AC 52 ms
36,756 KB
testcase_10 AC 110 ms
46,360 KB
testcase_11 AC 49 ms
36,852 KB
testcase_12 AC 47 ms
37,060 KB
testcase_13 AC 49 ms
36,704 KB
testcase_14 AC 50 ms
37,032 KB
testcase_15 AC 48 ms
37,268 KB
testcase_16 AC 49 ms
37,176 KB
testcase_17 AC 48 ms
36,888 KB
testcase_18 AC 153 ms
52,216 KB
testcase_19 AC 105 ms
44,644 KB
testcase_20 AC 109 ms
45,244 KB
testcase_21 AC 115 ms
46,228 KB
testcase_22 AC 110 ms
46,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static int[] weight;
    static ArrayList<HashSet<Integer>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        weight = new int[n];
        for (int i = 0; i < n; i++) {
            weight[i] = sc.nextInt();
            dp.add(new HashSet<>());
        }
        if (dfw(n - 1, 0)) {
            System.out.println("impossible");
        } else {
            System.out.println("possible");
        }
    }
    
    static boolean dfw(int idx, int w) {
        if (idx < 0) {
            return w != 0;
        }
        if (!dp.get(idx).contains(w)) {
            if (dfw(idx - 1, w + weight[idx]) && dfw(idx - 1, w - weight[idx])) {
                dp.get(idx).add(w);
            } else {
                return false;
            }
        }
        return true;
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0