結果

問題 No.324 落ちてた閉路グラフ
ユーザー hogeover30hogeover30
提出日時 2016-04-06 14:49:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 719 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 58,988 KB
実行使用メモリ 145,024 KB
最終ジャッジ日時 2024-11-15 19:42:45
合計ジャッジ時間 7,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
144,768 KB
testcase_01 AC 104 ms
144,896 KB
testcase_02 AC 104 ms
145,024 KB
testcase_03 AC 106 ms
144,896 KB
testcase_04 AC 115 ms
145,024 KB
testcase_05 AC 131 ms
144,896 KB
testcase_06 AC 113 ms
145,024 KB
testcase_07 AC 128 ms
145,016 KB
testcase_08 AC 114 ms
144,752 KB
testcase_09 AC 106 ms
144,896 KB
testcase_10 AC 113 ms
144,996 KB
testcase_11 AC 108 ms
144,772 KB
testcase_12 AC 103 ms
144,972 KB
testcase_13 AC 100 ms
145,024 KB
testcase_14 AC 106 ms
144,896 KB
testcase_15 AC 106 ms
144,896 KB
testcase_16 AC 102 ms
144,896 KB
testcase_17 AC 103 ms
144,896 KB
testcase_18 AC 102 ms
145,024 KB
testcase_19 AC 104 ms
144,896 KB
testcase_20 AC 103 ms
144,896 KB
testcase_21 AC 103 ms
145,024 KB
testcase_22 AC 103 ms
144,896 KB
testcase_23 AC 104 ms
144,896 KB
testcase_24 AC 102 ms
145,024 KB
testcase_25 AC 102 ms
144,768 KB
testcase_26 AC 105 ms
144,896 KB
testcase_27 AC 105 ms
144,896 KB
testcase_28 AC 104 ms
144,896 KB
testcase_29 AC 104 ms
145,024 KB
testcase_30 AC 104 ms
144,896 KB
testcase_31 AC 104 ms
144,896 KB
testcase_32 AC 131 ms
145,024 KB
testcase_33 AC 128 ms
144,896 KB
testcase_34 AC 115 ms
145,024 KB
testcase_35 AC 104 ms
145,024 KB
testcase_36 AC 106 ms
144,896 KB
testcase_37 AC 103 ms
145,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;

int dp[2][3010][3010][2];
int w[3010];
const int mininf=0x88888888;

int main()
{
    int n, m; cin>>n>>m;
    for(int i=0; i<n; ++i) cin>>w[i];

    int res=mininf;
    memset(dp, 0x88, sizeof(dp));
    dp[0][0][0][0]=dp[1][0][1][1]=0;
    for(int h=0; h<2; ++h) {
        for(int i=1; i<n; ++i) {
            for(int j=0; j<=m; ++j) {
                dp[h][i][j][0]=max(dp[h][i-1][j][0], dp[h][i-1][j][1]);
                if (j)
                    dp[h][i][j][1]=max(dp[h][i-1][j-1][0], dp[h][i-1][j-1][1]+w[i]);
            }
        }
        res=max({res, dp[h][n-1][m][0], dp[h][n-1][m][1]+h*w[0]});
    }
    cout<<res<<endl;
}
0