結果

問題 No.324 落ちてた閉路グラフ
ユーザー moti
提出日時 2015-12-18 18:40:26
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 1,438 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 102,916 KB
実行使用メモリ 141,824 KB
最終ジャッジ日時 2024-11-15 19:34:55
合計ジャッジ時間 4,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

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;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0