結果

問題 No.4 おもりと天秤
ユーザー kappybarkappybar
提出日時 2021-01-02 20:16:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 983 bytes
コンパイル時間 1,574 ms
コンパイル使用メモリ 169,944 KB
実行使用メモリ 7,020 KB
最終ジャッジ日時 2023-08-02 14:40:32
合計ジャッジ時間 3,066 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 7 ms
7,020 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 7 ms
6,860 KB
testcase_08 AC 7 ms
6,892 KB
testcase_09 AC 6 ms
6,856 KB
testcase_10 AC 7 ms
6,984 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 7 ms
6,924 KB
testcase_19 AC 7 ms
7,012 KB
testcase_20 AC 7 ms
6,984 KB
testcase_21 AC 7 ms
6,956 KB
testcase_22 AC 7 ms
6,988 KB
権限があれば一括ダウンロードができます

ソースコード

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