結果
問題 | No.4 おもりと天秤 |
ユーザー | kitakitalily |
提出日時 | 2019-05-19 00:12:39 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 163 ms / 5,000 ms |
コード長 | 4,011 bytes |
コンパイル時間 | 2,879 ms |
コンパイル使用メモリ | 84,828 KB |
実行使用メモリ | 47,728 KB |
最終ジャッジ日時 | 2024-09-17 06:25:04 |
合計ジャッジ時間 | 7,014 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
47,088 KB |
testcase_01 | AC | 140 ms
47,252 KB |
testcase_02 | AC | 153 ms
47,728 KB |
testcase_03 | AC | 144 ms
47,212 KB |
testcase_04 | AC | 150 ms
47,460 KB |
testcase_05 | AC | 163 ms
47,708 KB |
testcase_06 | AC | 141 ms
47,112 KB |
testcase_07 | AC | 163 ms
47,044 KB |
testcase_08 | AC | 148 ms
47,512 KB |
testcase_09 | AC | 162 ms
47,244 KB |
testcase_10 | AC | 162 ms
47,500 KB |
testcase_11 | AC | 145 ms
47,456 KB |
testcase_12 | AC | 139 ms
46,908 KB |
testcase_13 | AC | 141 ms
47,220 KB |
testcase_14 | AC | 141 ms
47,488 KB |
testcase_15 | AC | 140 ms
47,016 KB |
testcase_16 | AC | 146 ms
47,628 KB |
testcase_17 | AC | 144 ms
46,952 KB |
testcase_18 | AC | 161 ms
47,104 KB |
testcase_19 | AC | 161 ms
47,248 KB |
testcase_20 | AC | 162 ms
47,256 KB |
testcase_21 | AC | 162 ms
47,316 KB |
testcase_22 | AC | 159 ms
47,724 KB |
ソースコード
import java.util.*; public class Main { static int mod = 1000000007; static int size = 200000; static long[] fac = new long[size]; static long[] finv = new long[size]; static long[] inv = new long[size]; static int INF = Integer.MAX_VALUE; public static void main(String[] args){ Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] w = new int[n+1]; int sum = 0; for(int i = 1; i <= n; i++){ w[i] = scanner.nextInt(); sum += w[i]; } if(sum % 2 == 1){ System.out.println("impossible"); return; } boolean[][] dp = new boolean[n+1][10010]; dp[0][0] = true; for(int i = 1; i <= n; i++){ for(int j = 0; j <= 10000; j++){ dp[i][j] |= dp[i-1][j]; if(j-w[i] >= 0){ dp[i][j] |= dp[i-1][j-w[i]]; } } } if(dp[n][sum/2]){ System.out.println("possible"); }else{ System.out.println("impossible"); } } static class Pair implements Comparable<Pair>{ int x, y; Pair(int a, int b){ x = a; y = b; } @Override public boolean equals(Object o){ if (this == o) return true; if (!(o instanceof Pair)) return false; Pair p = (Pair) o; return x == p.x && y == p.y; } @Override public int compareTo(Pair p){ return x == p.x ? y - p.y : x - p.x; //xで昇順にソート //return (x == p.x ? y - p.y : x - p.x) * -1; //xで降順にソート //return y == p.y ? x - p.x : y - p.y;//yで昇順にソート //return (y == p.y ? x - p.x : y - p.y)*-1;//yで降順にソート } } //繰り返し二乗法 public static long pow(long x, long n){ long ans = 1; while(n > 0){ if((n & 1) == 1){ ans = ans * x; ans %= mod; } x = x * x % mod; n >>= 1; } return ans; } //fac, inv, finvテーブルの初期化、これ使う場合はinitComb()で初期化必要 public static void initComb(){ fac[0] = finv[0] = inv[0] = fac[1] = finv[1] = inv[1] = 1; for (int i = 2; i < size; ++i) { fac[i] = fac[i - 1] * i % mod; inv[i] = mod - (mod / i) * inv[(int) (mod % i)] % mod; finv[i] = finv[i - 1] * inv[i] % mod; } } //nCk % mod public static long comb(int n, int k){ return fac[n] * finv[k] % mod * finv[n - k] % mod; } //n! % mod public static long fact(int n){ return fac[n]; } //(n!)^-1 with % mod public static long finv(int n){ return finv[n]; } static class UnionFind { int[] parent; public UnionFind(int size) { parent = new int[size]; Arrays.fill(parent, -1); } public boolean unite(int x, int y) { x = root(x); y = root(y); if (x != y) { if (parent[y] < parent[x]) { int tmp = y; y = x; x = tmp; } parent[x] += parent[y]; parent[y] = x; return true; } return false; } public boolean same(int x, int y) { return root(x) == root(y); } public int root(int x) { return parent[x] < 0 ? x : (parent[x] = root(parent[x])); } public int size(int x) { return -parent[root(x)]; } } public static int upperBound(long[] array, long value) { int low = 0; int high = array.length; int mid; while( low < high ) { mid = ((high - low) >>> 1) + low; // (high + low) / 2 if( array[mid] <= value ) { low = mid + 1; } else { high = mid; } } return low; } public static final int lowerBound(final long[] arr, final long value) { int low = 0; int high = arr.length; int mid; while (low < high) { mid = ((high - low) >>> 1) + low; //(low + high) / 2 (オーバーフロー対策) if (arr[mid] < value) { low = mid + 1; } else { high = mid; } } return low; } //n,mの最大公約数 public static int gcd(int n, int m){ if(m > n) return gcd(m,n); if(m == 0) return n; return gcd(m, n%m); } }