結果

問題 No.324 落ちてた閉路グラフ
ユーザー sugim48sugim48
提出日時 2015-12-17 00:13:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 1,791 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 85,668 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 19:20:01
合計ジャッジ時間 2,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 26 ms
5,248 KB
testcase_05 AC 64 ms
5,248 KB
testcase_06 AC 22 ms
5,248 KB
testcase_07 AC 58 ms
5,248 KB
testcase_08 AC 23 ms
5,248 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 23 ms
5,248 KB
testcase_11 AC 12 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 7 ms
5,248 KB
testcase_15 AC 11 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 62 ms
5,248 KB
testcase_33 AC 52 ms
5,248 KB
testcase_34 AC 23 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 7 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

int INF = INT_MAX / 2;

int main() {
	int n, m; cin >> n >> m;
	vector<int> a(n);
	for (int i = 0; i < n; i++)
		cin >> a[i];
	int ma = -INF;
	{
		vector<int> dp0(m + 1, -INF), dp1(m + 1, -INF);
		dp0[0] = 0;
		for (int i = 1; i < n; i++) {
			vector<int> _dp0(m + 1, -INF), _dp1(m + 1, -INF);
			for (int j = 0; j <= m; j++) {
				_dp0[j] = max(_dp0[j], dp0[j]);
				_dp0[j] = max(_dp0[j], dp1[j]);
				if (j + 1 <= m) {
					_dp1[j + 1] = max(_dp1[j + 1], dp0[j]);
					_dp1[j + 1] = max(_dp1[j + 1], dp1[j] + a[i - 1]);
				}
			}
			dp0 = _dp0; dp1 = _dp1;
		}
		ma = max(ma, dp0[m]);
		ma = max(ma, dp1[m]);
	}
	if (m)
	{
		vector<int> dp0(m + 1, -INF), dp1(m + 1, -INF);
		dp1[1] = 0;
		for (int i = 1; i < n; i++) {
			vector<int> _dp0(m + 1, -INF), _dp1(m + 1, -INF);
			for (int j = 0; j <= m; j++) {
				_dp0[j] = max(_dp0[j], dp0[j]);
				_dp0[j] = max(_dp0[j], dp1[j]);
				if (j + 1 <= m) {
					_dp1[j + 1] = max(_dp1[j + 1], dp0[j]);
					_dp1[j + 1] = max(_dp1[j + 1], dp1[j] + a[i - 1]);
				}
			}
			dp0 = _dp0; dp1 = _dp1;
		}
		ma = max(ma, dp0[m]);
		ma = max(ma, dp1[m] + a[n - 1]);
	}
	cout << ma << endl;
}
0