結果
| 問題 | No.4 おもりと天秤 |
| コンテスト | |
| ユーザー |
agonybusscla191
|
| 提出日時 | 2018-02-19 16:57:17 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 5,000 ms |
| コード長 | 953 bytes |
| コンパイル時間 | 1,337 ms |
| コンパイル使用メモリ | 160,844 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-26 10:28:42 |
| 合計ジャッジ時間 | 2,000 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int N;
cin>>N;
vector <int> w(N);
int sum=0;
for(int i=0;i<N;i++){
cin>>w[i];
sum+=w[i];
}
if(sum%2!=0){
cout<<"impossible"<<endl;
return 0;
}
bool dp[110][20000];
for(int i=0;i<110;i++){
for(int j=0;j<20000;j++){
dp[i][j]=false;
}
}
dp[0][0]=true;
for(int i=0;i<N;i++){
for(int j=0;j<10100;j++){
if(dp[i][j]){
dp[i+1][j+w[i]]=true;
dp[i+1][j]=true;
}
}
}
if(dp[N][sum/2]){
cout<<"possible"<<endl;
}
else{
cout<<"impossible"<<endl;
}
return 0;
}
agonybusscla191