結果
問題 | No.4 おもりと天秤 |
ユーザー | suakii |
提出日時 | 2019-04-18 12:01:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 853 bytes |
コンパイル時間 | 1,279 ms |
コンパイル使用メモリ | 159,532 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 09:09:25 |
合計ジャッジ時間 | 2,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int n; ll sum; int w[10001]; bool dp[100][10001]; bool f(int index, int weight) { if (dp[index][weight]) return true; if (weight == sum / 2) return dp[index][weight] = true; if (weight > sum/2) return dp[index][weight] = false; if (index == n) return dp[index][weight] = false; return dp[index][weight] = f(index+1, weight) || f(index+1, weight + w[index]); } int main() { ios::sync_with_stdio(false); cin >> n; for (int i = 0; i < n; i++) { cin >> w[i]; sum += w[i]; } if (sum & 1) { cout << "impossible\n"; return 0; } dp[0][0] = true; if (f(0,0)) { cout << "possible\n"; } else { cout << "impossible\n"; } return 0; }