結果

問題 No.324 落ちてた閉路グラフ
ユーザー motimoti
提出日時 2015-12-18 18:42:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 1,439 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 103,212 KB
実行使用メモリ 141,696 KB
最終ジャッジ日時 2024-11-15 19:34:59
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 123 ms
57,600 KB
testcase_05 AC 269 ms
141,696 KB
testcase_06 AC 103 ms
47,232 KB
testcase_07 AC 250 ms
129,536 KB
testcase_08 AC 109 ms
50,560 KB
testcase_09 AC 49 ms
23,040 KB
testcase_10 AC 110 ms
50,560 KB
testcase_11 AC 49 ms
22,912 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 22 ms
13,824 KB
testcase_15 AC 41 ms
23,296 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 AC 1 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 1 ms
6,820 KB
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 262 ms
136,960 KB
testcase_33 AC 228 ms
114,560 KB
testcase_34 AC 106 ms
51,072 KB
testcase_35 AC 3 ms
6,816 KB
testcase_36 AC 27 ms
13,952 KB
testcase_37 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <complex>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <iomanip>
#include <assert.h>
#include <array>
#include <cstdio>
#include <cstring>
#include <random>
#include <functional>
#include <numeric>
#include <bitset>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)
#define all(c) (c).begin(), (c).end()
#define zero(a) memset(a, 0, sizeof a)
#define minus(a) memset(a, -1, sizeof a)
#define minimize(a, x) a = std::min(a, x)
#define maximize(a, x) a = std::max(a, x)

typedef long long ll;
int const inf = 1<<29;

int main() {

  int N, M; cin >> N >> M;
  int dp[N+1][M+1][2][2];
  rep(i, N+1) rep(j, M+1) rep(k, 2) rep(l, 2) dp[i][j][k][l] = -inf;
  int w[N]; rep(i, N) { cin >> w[i]; }
  dp[0][M][0][0] = 0;
  rep(i, N) rep(used, M+1) rep(prevused, 2) rep(firstused, 2) {
    auto && curr = dp[i][used][prevused][firstused];
    if(curr == -inf) { continue; }
    if(used) {
      int ncost = curr + (i > 0 && prevused ? w[i-1] : 0);
      if(i == N-1 && firstused) ncost += w[N-1];
      maximize(dp[i+1][used-1][1][firstused || i == 0], ncost);
    }
    maximize(dp[i+1][used][0][firstused], curr);
  }

  int max = -inf;
  rep(i, 2) rep(j, 2) {
    maximize(max, dp[N][0][i][j]);
  }

  cout << max << endl;

  return 0;
}
0