結果
| 問題 |
No.4 おもりと天秤
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-02 20:14:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 942 bytes |
| コンパイル時間 | 1,721 ms |
| コンパイル使用メモリ | 171,288 KB |
| 実行使用メモリ | 7,424 KB |
| 最終ジャッジ日時 | 2024-10-12 10:21:02 |
| 合計ジャッジ時間 | 2,489 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 5 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define chmin(x,y) x = min((x),(y));
#define chmax(x,y) x = max((x),(y));
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
const int INF = 1e9;
const long long LINF = 1e17;
const int MOD = 1000000007;
//const int MOD = 998244353;
const double PI = 3.14159265358979323846;
int main(){
int n;
cin >> n;
vector<int> w(n);
rep(i,n) cin >> w[i];
vector<vector<int>> dp(n+1,vector<int>(10005,0));
int W = 0;
rep(i,n) W += w[i];
dp[0][0] = 1;
for(int i=1;i<=n;i++){
for(int j=0;j<10005;j++){
dp[i][j] = dp[i-1][j];
if(j-w[i-1]>=0) dp[i][j] += dp[i-1][j-w[i-1]];
}
}
if(W%2==1) cout << "impossible" << endl;
else{
if(dp[n][W/2]>0) cout << "possible" << endl;
else cout << "impossible" << endl;
}
return 0;
}