結果
| 問題 |
No.4 おもりと天秤
|
| コンテスト | |
| ユーザー |
ark27
|
| 提出日時 | 2019-07-25 11:29:41 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 5,000 ms |
| コード長 | 864 bytes |
| コンパイル時間 | 1,556 ms |
| コンパイル使用メモリ | 168,376 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-02 05:58:58 |
| 合計ジャッジ時間 | 2,367 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(i,n) for(int i=0;i<(n);i++)
#define MOD 1000000007
#define all(x) (x).begin(),(x).end()
template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
template<class T> inline T GCD(T a,T b){T c;while(b!=0){c=a%b;a=b;b=c;}return a;}
template<class T> inline T LCM(T a,T b){return a/GCD(a,b)*b;}
int main(){
int n;
cin >> n;
int w[110],sum=0;
FOR(i,n){
cin >> w[i+1];
sum+=w[i+1];
}
bool dp[110][10010]={0};
dp[0][0]=1;
for(int i=1;i<=n;i++){
for(int j=0;j<=10000;j++){
if(j-w[i]>=0){
if(dp[i-1][j] || dp[i-1][j-w[i]]){
dp[i][j]=1;
}
}
}
}
if(dp[n][sum/2] && sum%2==0){
cout << "possible" << endl;
}else{
cout << "impossible" << endl;
}
}
ark27