結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | kimiyuki |
提出日時 | 2016-02-29 11:37:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,098 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 69,572 KB |
実行使用メモリ | 814,336 KB |
最終ジャッジ日時 | 2024-09-24 12:43:11 |
合計ジャッジ時間 | 3,990 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
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 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <iostream> #include <vector> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i)) typedef long long ll; using namespace std; typedef vector<ll> vll; typedef vector<vll> vvll; typedef vector<vvll> vvvll; typedef vector<vvvll> vvvvll; const ll INF = 1e9; int main() { int n, m; cin >> n >> m; vector<ll> w(n); repeat (i,n) cin >> w[i]; vvvvll dp(2, vvvll(n+1, vvll(m+1, vll(2, - INF)))); dp[false][0][0][false] = 0; dp[ true][0][1][ true] = 0; repeat (p,2) repeat (i,n-1) repeat (j,m+1) { ;;;;;;;;;;; dp[p][i+1][j][false] = max(dp[p][i][j ][false], dp[p][i][j ][true]); if (j >= 1) dp[p][i+1][j][ true] = max(dp[p][i][j-1][false], dp[p][i][j-1][true] + w[i]); } repeat (j,m+1) { dp[false][n][j][false] = max(dp[false][n-1][j][false], dp[false][n-1][j][true]); dp[ true][n][j][ true] = max(dp[ true][n-1][j][false], dp[ true][n-1][j][true] + w[n-1]); } ll ans = max(dp[false][n][m][false], dp[true][n][m][true]); cout << ans << endl; return 0; }