結果

問題 No.324 落ちてた閉路グラフ
ユーザー imulanimulan
提出日時 2016-09-21 03:26:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,191 bytes
コンパイル時間 1,576 ms
コンパイル使用メモリ 166,552 KB
実行使用メモリ 288,664 KB
最終ジャッジ日時 2024-11-17 10:17:51
合計ジャッジ時間 24,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
288,640 KB
testcase_01 AC 59 ms
288,604 KB
testcase_02 AC 61 ms
144,256 KB
testcase_03 AC 60 ms
144,256 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 246 ms
144,548 KB
testcase_07 AC 416 ms
144,608 KB
testcase_08 AC 258 ms
144,608 KB
testcase_09 AC 142 ms
144,600 KB
testcase_10 TLE -
testcase_11 AC 141 ms
144,584 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 43 ms
144,612 KB
testcase_14 AC 67 ms
144,384 KB
testcase_15 AC 90 ms
144,384 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 42 ms
144,296 KB
testcase_18 AC 41 ms
144,256 KB
testcase_19 AC 43 ms
144,256 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 42 ms
144,356 KB
testcase_22 AC 41 ms
144,256 KB
testcase_23 AC 42 ms
144,256 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 41 ms
144,332 KB
testcase_26 AC 42 ms
144,256 KB
testcase_27 AC 97 ms
144,256 KB
testcase_28 AC 99 ms
144,316 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 41 ms
144,384 KB
testcase_31 AC 42 ms
144,256 KB
testcase_32 AC 412 ms
144,640 KB
testcase_33 AC 404 ms
144,616 KB
testcase_34 AC 231 ms
144,512 KB
testcase_35 AC 42 ms
144,464 KB
testcase_36 AC 95 ms
144,512 KB
testcase_37 AC 42 ms
288,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

const int INF=12345678;

const int N=3000;
int n,m;
int w[N];

int dp[3001][3001][2][2];
int dfs(int now, int used, int before, int one)
{
    if(dp[now][used][before][one] > -INF) return dp[now][used][before][one];

    if(now==n)
    {
        if(used==m) return 0;
        return -INF;
    }

    int ret=-INF;
    // nowを選ぶ
    if(used<m)
    {
        int add=0;
        if(before) add+=w[now-1];
        if(now==n-1 && one) add+=w[n-1];

        ret=max(ret,dfs(now+1,used+1,1,one)+add);
    }
    // nowを選ばない
    ret=max(ret,dfs(now+1,used,0,one));

    return dp[now][used][before][one] = max(-INF,ret);
}

int main()
{
    scanf(" %d %d", &n, &m);
    rep(i,n) scanf(" %d", &w[i]);

    if(m==0) printf("0\n");
    else
    {
        rep(i,3001)rep(j,3001)rep(k,2)rep(l,2) dp[i][j][k][l]=-INF;
        printf("%d\n", max(dfs(1,0,0,0),dfs(1,1,1,1)));
    }
    return 0;
}
0