結果

問題 No.4 おもりと天秤
ユーザー kappybar
提出日時 2021-01-02 20:16:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 983 bytes
コンパイル時間 1,627 ms
コンパイル使用メモリ 172,268 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-10-12 10:22:22
合計ジャッジ時間 2,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(dp[i][j]>0) dp[i][j] = 1;
        }
    }
    if(W%2==1) cout << "impossible" << endl;
    else{
        if(dp[n][W/2]>0) cout << "possible" << endl;
        else cout << "impossible" << endl;
    }
    return 0;
}
0