結果
問題 | No.4 おもりと天秤 |
ユーザー | kibou1136 |
提出日時 | 2021-12-08 15:39:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 835 bytes |
コンパイル時間 | 1,449 ms |
コンパイル使用メモリ | 166,460 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-16 06:51:53 |
合計ジャッジ時間 | 7,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,484 KB |
testcase_01 | AC | 4 ms
7,416 KB |
testcase_02 | AC | 4 ms
7,376 KB |
testcase_03 | AC | 4 ms
7,424 KB |
testcase_04 | AC | 4 ms
7,424 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int n; int w[101]; int sum; int dp[101][10001]; int recu(int N, int W){ int res = 0; if (dp[N][W] > -1) return dp[N][W]; if (N == 0 && W > 0){ dp[N][W] = 0; return dp[N][W]; } if (W == 0){ dp[N][W] = 1; return dp[N][W]; } res = recu(N - 1,W); if (w[N - 1] <= W){ res += recu(N - 1, W - w[N - 1]); } return res; } int main(){ memset(dp,-1, sizeof(dp)); sum = 0; dp[0][0] = 1; cin >> n; for (int i = 0; i < n; ++i){ cin >> w[i]; sum += w[i]; } if (sum%2 != 0){ cout << "impossible" << endl; return 0; } sum = sum/2; int res = recu(n, sum); if (res > 0) cout << "possible" << endl; else cout << "impossible" << endl; }