結果
問題 | No.393 2本の竹 |
ユーザー | togari_takamoto |
提出日時 | 2016-07-12 06:59:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,061 bytes |
コンパイル時間 | 1,865 ms |
コンパイル使用メモリ | 175,516 KB |
実行使用メモリ | 824,100 KB |
最終ジャッジ日時 | 2024-10-15 01:03:44 |
合計ジャッジ時間 | 5,277 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
20,900 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 8 ms
6,828 KB |
testcase_03 | AC | 16 ms
9,604 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 7 ms
5,816 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 31 ms
11,044 KB |
testcase_08 | AC | 86 ms
20,216 KB |
testcase_09 | MLE | - |
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 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using vl = vector<ll>; using vvl = vector<vl>; #define REP(i,n) for(ll i = 0; i < (n); ++i) #define FOR(i,s,e) for (ll i = s; i < (ll)e; i++) #define TEN(x) ((ll)1e##x) int main() { cin.tie(0); // cinとcoutの連携を切る ios_base::sync_with_stdio(false); cout << fixed << setprecision(50); ll d; cin >> d; REP(_, d) { ll n1, n2, m; cin >> n1 >> n2 >> m; vl a(m); REP(i, m) cin >> a[i]; vector<vvl> dp(m + 1, vvl(m + 1, vl(n1 + 1, TEN(9)))); dp[0][0][0] = 0; // dp[i人までで][j人が満足し][n1のうちk利用するときの] = n2の利用した最小の長さ FOR(i, 1, m + 1) REP(j, m + 1) REP(k, n1 + 1) { if(j > 0) dp[i][j][k] = min(dp[i][j][k], dp[i - 1][j - 1][k] + a[i - 1]); if(j > 0 && k - a[i - 1] >= 0) dp[i][j][k] = min(dp[i][j][k], dp[i - 1][j - 1][k - a[i - 1]]); dp[i][j][k] = min(dp[i][j][k], dp[i - 1][j][k]); } ll ans = 0; REP(i, m + 1) REP(j, n1 + 1) if (dp[m][i][j] <= n2) ans = max(ans, i); cout << ans << endl; } return 0; }