結果

問題 No.258 回転寿司(2)
ユーザー IL_msta
提出日時 2015-07-31 23:32:51
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,575 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 93,120 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-24 09:00:30
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other WA * 67
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
 
#include <iostream>
#include <iomanip>
#include <sstream>
 
#include <algorithm>
#include <cmath>
 
#include <string>
//#include <array>
#include <list>
#include <queue>
#include <vector>
#include <complex>
#include <set>
#include <map>
 
/////////
#define REP(i, x, n) for(int i = x; i < n; i++)
#define rep(i,n) REP(i,0,n)
#define P(p) cout<<(p)<<endl;
 
#define PII pair<int,int>
/////////
typedef long long LL;
typedef long double LD;
/////////
using namespace::std;
/////////

int dp[1001];
string str[1001];

int main(void){
    std::cin.tie(0); 
    std::ios::sync_with_stdio(false);
    std::cout << std::fixed;//
    cout << setprecision(16);//
	
	int N;
	cin>>N;
	int V[1000];
	rep(i,N){
		cin>>V[i];
	}
	dp[0]  = V[0];
	str[0] = "1";
	if(N > 1){
		dp[1]  = V[1];
		str[1] = "2";
	}
	
	stringstream ss;
	for(int i=2;i<=N;++i){
		if(i-2 >= 0){
			if( dp[i] < dp[i-2] + V[i] ){
				dp[i] = dp[i-2] + V[i];
				ss.str("");
				ss.clear(stringstream::goodbit);
				ss << i+1;
				str[i] = str[i-2] + ss.str();
				
			}
		}
		if(i-3 >= 0){
			if( dp[i] < dp[i-3] + V[i] ){
				dp[i] = dp[i-3] + V[i];
				ss.str("");
				ss.clear(stringstream::goodbit);
				ss << i+1;
				str[i] = str[i-3] + ss.str();
			}
		}
	}
	/*if(N==1){
		P(dp[0]);
		P(str[0]);
	}
	else*/
	int ans = 0;
	if( dp[N] > dp[N-1] ){
		ans = N;
	}else{
		ans = N-1;
	}

	P(dp[ans]);
	sort( str[ans].begin(),str[ans].end() );
	for(int i=0;i<str[ans].size();++i){
		cout << str[ans][i];
		if(i+1<str[ans].size()){
			cout << " ";
		}else{
			cout << "\n";
		}
	}
	return 0;
}
0