結果
問題 | No.4 おもりと天秤 |
ユーザー | matsukin1111 |
提出日時 | 2019-04-28 23:38:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,192 bytes |
コンパイル時間 | 950 ms |
コンパイル使用メモリ | 97,400 KB |
実行使用メモリ | 7,364 KB |
最終ジャッジ日時 | 2024-06-01 08:47:17 |
合計ジャッジ時間 | 1,911 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 5 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 4 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
6,940 KB |
testcase_21 | AC | 4 ms
6,944 KB |
testcase_22 | WA | - |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include <cstdlib> #include <cmath> #include<cctype> #include<string> #include<set> #include<iomanip> #include <map> #include<algorithm> #include <functional> #include<vector> #include<climits> #include<stack> #include<queue> #include <deque> #include <climits> #include <typeinfo> #include <utility> #define all(x) (x).begin(),(x).end() #define rep(i,m,n) for(int i = m;i < n;++i) #define pb push_back #define fore(i,a) for(auto &i:a) #define rrep(i,m,n) for(int i = m;i >= n;--i) #define INF INT_MAX/2 using namespace std; using ll = long long; using R = double; using Data = pair<ll, vector<int>>; const ll MOD = 1e9 + 7; const ll inf = 1LL << 50; struct edge { ll from; ll to; ll cost; }; vector<int>w(110); int dp[110][10010]; int n,sum; string solve() { dp[0][0] = 1; rep(i,0,n)rep(j,0,sum+1){ dp[i+1][j+w[i]] += dp[i][j]; dp[i + 1][j] += dp[i][j]; } if (dp[n][sum / 2] > 0)return "possible"; else return "impossible"; } int main() { cin >> n; sum = 0; rep(i, 0, n) { cin >> w[i]; sum += w[i]; } if (sum % 2 != 0) { cout << "impossible" << endl; } else { cout << solve() << endl; } return 0; }