結果
| 問題 | No.4 おもりと天秤 |
| コンテスト | |
| ユーザー |
kekenx
|
| 提出日時 | 2020-01-23 11:45:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 619 bytes |
| コンパイル時間 | 1,415 ms |
| コンパイル使用メモリ | 166,468 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-18 21:16:19 |
| 合計ジャッジ時間 | 3,676 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 RE * 9 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
const int MAXW = 10005;
const int MAXN = 100;
bool dp[MAXN][MAXW];
int W[MAXN];
int main() {
int N;
scanf("%d", &N);
int total = 0;
for (int i = 0; i < N; ++i) {
scanf("%d", &W[i]);
total += W[i];
}
if (total & 1) {
puts("impossible");
return 0;
}
memset(dp, 0, sizeof(dp));
dp[0][0] = true;
for (int i = 0; i < N; ++i) {
for (int j = 0; j < MAXW; ++j) {
if (dp[i][j]) {
dp[i + 1][j + W[i]] = true;
dp[i + 1][j] = true;
}
}
}
if (dp[N][total / 2]) puts("possible");
else puts("impossible");
return 0;
}
kekenx