結果
問題 | No.4 おもりと天秤 |
ユーザー | nukacha |
提出日時 | 2017-05-19 12:23:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 891 ms |
コンパイル使用メモリ | 83,644 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-18 22:43:54 |
合計ジャッジ時間 | 2,781 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 1,095 ms
11,136 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <numeric> #include <map> int N; std::vector<int> W; std::map<std::pair<int, int>, bool> mp; bool check(int ind, int t) { std::pair<int, int> p = std::make_pair(ind, t); if (mp.find(p) != mp.end()) { return mp[p]; } if (t == 0) { mp[p] = true; return true; } else if (t < 0) { mp[p] = false; return false; } for (int i = ind; i < N; i++) { if (check(i, t - W[i])) { mp[p] = true; return true; } } mp[p] = false; return false; } int main() { int sum; int target; std::cin >> N; W.resize(N); for (int i = 0; i < N; i++) { std::cin >> W[i]; } sum = std::accumulate(W.begin(), W.end(), 0); target = sum / 2; if (sum % 2 == 1) { std::cout << "impossible" << std::endl; } else if (check(0, target)) { std::cout << "possible" << std::endl; } else { std::cout << "impossible" << std::endl; } }