結果
| 問題 |
No.4 おもりと天秤
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-01-18 07:40:06 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 817 bytes |
| コンパイル時間 | 652 ms |
| コンパイル使用メモリ | 69,516 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-22 19:04:00 |
| 合計ジャッジ時間 | 1,303 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 WA * 8 |
ソースコード
#include <iostream>
#include <cstdio>
#include <vector>
#include <numeric>
#include <algorithm>
#include <utility>
using namespace std;
int n;
vector<int> w;
int half;
int main() {
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 == 1) {
half = total / 2;
} else {
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][ dp[i][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;
}