結果
問題 | No.4 おもりと天秤 |
ユーザー | kappybar |
提出日時 | 2021-01-02 20:14:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 6 ms
7,296 KB |
testcase_09 | WA | - |
testcase_10 | AC | 6 ms
7,168 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 6 ms
7,296 KB |
testcase_19 | WA | - |
testcase_20 | AC | 5 ms
7,296 KB |
testcase_21 | AC | 6 ms
7,168 KB |
testcase_22 | WA | - |
ソースコード
#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; }