結果
問題 | No.4 おもりと天秤 |
ユーザー | Dadarithm |
提出日時 | 2015-09-14 23:56:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,079 bytes |
コンパイル時間 | 676 ms |
コンパイル使用メモリ | 81,852 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-07-19 06:32:46 |
合計ジャッジ時間 | 1,438 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 15 ms
6,912 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 16 ms
7,040 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 12 ms
6,784 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 16 ms
7,424 KB |
testcase_19 | AC | 10 ms
5,888 KB |
testcase_20 | AC | 14 ms
6,784 KB |
testcase_21 | AC | 11 ms
6,272 KB |
testcase_22 | AC | 11 ms
6,144 KB |
ソースコード
#include <iostream> #include <vector> #include <unordered_map> #include <algorithm> using namespace std; int N; vector<int> arr; vector<unordered_map<int, bool>> memo; bool ans; bool solve(int n, int left) { if (n == arr.size()) return !left; else if (left < 0) return false; else { if (memo[n].find(left) != memo[n].end()) return memo[n][left]; else { if (solve(n + 1, left)) { memo[n][left] = true; return true; } else memo[n][left] = false; } if (memo[n].find(left - arr[n]) != memo[n].end()) return memo[n][left - arr[n]]; else { if (solve(n + 1, left - arr[n])) { memo[n][left - arr[n]] = true; return true; } else memo[n][left - arr[n]] = false; } return false; } } int main() { ans = false; cin >> N; for (int i = 0; i < N; ++i) { int j; cin >> j; arr.push_back(j); } memo.resize(N); int sum = 0, nsum = 0; for (int i = 0; i < arr.size(); ++i) sum += arr[i]; if (!(sum % 2)) ans = solve(0, sum / 2); cout << (ans ? "possible" : "impossible") << endl; return 0; }