結果
問題 | No.393 2本の竹 |
ユーザー |
![]() |
提出日時 | 2016-07-12 06:59:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 MLE * 1 -- * 18 |
ソースコード
#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; }