結果

問題 No.258 回転寿司(2)
ユーザー square1001square1001
提出日時 2016-11-05 14:08:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 169,528 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 19:09:34
合計ジャッジ時間 4,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 67
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int n, a[1009], dp[1009], pre[1009];
int main() {
	cin >> n;
	for(int i = 0; i < n; i++) cin >> a[i];
	for(int i = 0; i < n; i++) {
		dp[i] = a[i]; pre[i] = -1;
		for(int j = 0; j < i - 1; j++) {
			if(dp[j] + a[i] > dp[i]) {
				dp[i] = dp[j] + a[i];
				pre[i] = j;
			}
		}
	}
	int res = max_element(dp, dp + n) - dp;
	cout << dp[res] << endl;
	int pos = res; vector<int> v;
	while(pos != -1) {
		v.push_back(pos);
		pos = pre[pos];
	}
	reverse(v.begin(), v.end());
	for(int i = 0; i < v.size(); i++){
		if(i) cout << ' ';
		cout << v[i] + 1;
	}
	return 0;
}
0