結果

問題 No.1536 仕切り直し
ユーザー spipipikespipipike
提出日時 2021-06-06 20:03:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 1,531 ms
コンパイル使用メモリ 175,772 KB
実行使用メモリ 48,256 KB
最終ジャッジ日時 2024-05-04 00:50:32
合計ジャッジ時間 2,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 16 ms
17,024 KB
testcase_05 AC 31 ms
33,152 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 13 ms
14,848 KB
testcase_09 AC 19 ms
18,944 KB
testcase_10 AC 47 ms
48,256 KB
testcase_11 AC 9 ms
10,496 KB
testcase_12 AC 34 ms
34,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using LI = pair<ll,int>;

int main(){
	int n, m;
	cin>>n>>m;

	vector<vector<LI>> dp(n+1, vector<LI>(m+1, LI(LLONG_MIN/3, -1)));
	dp[0][0]=LI(0, -1);
	auto udp=[](LI &a, LI b){ a=max(a, b); };
	rep(i, n){
		int a;
		cin>>a;

		rep(j, m+1) udp(dp[i+1][j], LI(dp[i][j].first+(j%2==0?a:(-a)), j));
		rep(j, m) udp(dp[i+1][j+1], LI(dp[i][j].first+((j+1)%2==0?a:(-a)), j));
	}

	LI mx(LLONG_MIN, -1);
	rep(j, m+1) mx=max(mx, LI(dp[n][j].first, j));

	int j=mx.second;
	vector<int> ans;
	for(int i=n; i>=1; i--){
		if(j!=dp[i][j].second){
			j=dp[i][j].second;
			ans.push_back(i-1);
			if(j==0) break;
		}
	}

	reverse(ans.begin(), ans.end());

	while(ans.size()<m) ans.push_back(n);

	for(int e : ans) cout<<e<<endl;
	return 0;
}
0