結果
| 問題 |
No.4 おもりと天秤
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-01-18 07:51:00 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 5,000 ms |
| コード長 | 848 bytes |
| コンパイル時間 | 654 ms |
| コンパイル使用メモリ | 70,164 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-26 09:04:53 |
| 合計ジャッジ時間 | 1,437 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#include <iostream>
#include <cstdio>
#include <vector>
#include <numeric>
#include <algorithm>
#include <utility>
using namespace std;
int main() {
int n;
vector<int> w;
int half;
cin >> n;
w.assign(n + 1, 0);
for (int i = 1; i <= n; i++) {
cin >> w[i];
}
int total = accumulate(w.begin(), w.end(), 0);
bool ret = false;
if (total % 2 == 0) {
half = total / 2;
// printf("total %d: half %d\n", total, half);
vector< vector<bool> > dp;
dp.assign(n + 1, vector<bool>(total + 1, false));
dp[0][0] = true;
for (int i = 0; i < n; i++) {
for (int j = 0; j < total; j++) {
if (dp[i][j]) {
dp[i+1][j] = true;
dp[i+1][j + w[i]] = true;
}
}
}
for (int i = 0; i <= n; i++) {
if (dp[i][half]) {
ret = true;
break;
}
}
}
cout << (ret ? "possible" : "impossible") << endl;
return 0;
}