結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | boutarou |
提出日時 | 2021-03-31 23:04:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,451 bytes |
コンパイル時間 | 2,201 ms |
コンパイル使用メモリ | 205,080 KB |
実行使用メモリ | 73,188 KB |
最終ジャッジ日時 | 2024-05-09 09:57:35 |
合計ジャッジ時間 | 3,537 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
9,700 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 8 ms
19,940 KB |
testcase_10 | AC | 8 ms
19,816 KB |
testcase_11 | AC | 5 ms
13,796 KB |
testcase_12 | AC | 24 ms
50,532 KB |
testcase_13 | AC | 12 ms
30,056 KB |
testcase_14 | AC | 8 ms
28,100 KB |
testcase_15 | AC | 13 ms
30,184 KB |
testcase_16 | AC | 11 ms
15,816 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < int(n); i++) using ll = long long; using P = pair<int, int>; int zero = 3000; // dp[i][j][k] = 品物iまで見てj個購入して総和がk(-zero)の通り数 int dp[55][55][6300]; // 6 3 6 2 4 // 2 2 3 5 1 1 // 2 -2 // newa = {x-2, x-2, -1, 1, x-3, x-3} int main() { cin.tie(0); ios_base::sync_with_stdio(false); int n, m, x, y, z; cin >> n >> m >> x >> y >> z; vector<int> a(n); rep(i, n) cin >> a[i]; x -= z, y -= z; rep(i, n) a[i] -= z; int sum = 0, cnt = 0; vector<int> think; rep(i, n) { if (a[i] >= x) { sum += a[i]; cnt++; } else if (a[i] > y) { think.push_back(a[i]); } } if(cnt > m) { cout << "Handicapped" << endl; return 0; } dp[0][0][sum + zero] = 1; rep(i, think.size()) { rep(j, m - cnt + 1) { rep(k, zero * 2) { dp[i + 1][j][k] += dp[i][j][k]; if(j != m - cnt && 0 <= k + think[i] && k + think[i] < zero * 2) { dp[i + 1][j + 1][k + think[i]] += dp[i][j][k]; } } } } int ans = 0; rep(i, m - cnt + 1) { if (i == 0) { if(cnt != 0) ans += dp[think.size()][i][zero]; } else ans += dp[think.size()][i][zero]; } cout << ans << endl; }