結果

問題 No.258 回転寿司(2)
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 16:12:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,316 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 79,952 KB
実行使用メモリ 43,240 KB
最終ジャッジ日時 2024-11-06 18:49:53
合計ジャッジ時間 19,622 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
43,180 KB
testcase_01 AC 235 ms
43,220 KB
testcase_02 AC 220 ms
42,724 KB
testcase_03 AC 156 ms
41,328 KB
testcase_04 AC 202 ms
42,176 KB
testcase_05 AC 196 ms
42,324 KB
testcase_06 AC 230 ms
42,812 KB
testcase_07 AC 173 ms
41,756 KB
testcase_08 AC 209 ms
42,144 KB
testcase_09 AC 178 ms
41,888 KB
testcase_10 AC 164 ms
41,820 KB
testcase_11 AC 175 ms
41,752 KB
testcase_12 AC 186 ms
42,100 KB
testcase_13 AC 166 ms
41,564 KB
testcase_14 AC 224 ms
42,692 KB
testcase_15 AC 175 ms
41,736 KB
testcase_16 AC 175 ms
41,860 KB
testcase_17 AC 172 ms
41,948 KB
testcase_18 AC 225 ms
43,120 KB
testcase_19 AC 155 ms
41,400 KB
testcase_20 AC 207 ms
42,832 KB
testcase_21 AC 226 ms
42,704 KB
testcase_22 AC 143 ms
41,376 KB
testcase_23 AC 134 ms
40,360 KB
testcase_24 AC 144 ms
41,428 KB
testcase_25 AC 129 ms
40,948 KB
testcase_26 AC 220 ms
42,648 KB
testcase_27 AC 176 ms
41,900 KB
testcase_28 AC 231 ms
43,220 KB
testcase_29 AC 176 ms
41,948 KB
testcase_30 AC 164 ms
41,760 KB
testcase_31 AC 161 ms
41,684 KB
testcase_32 AC 172 ms
41,976 KB
testcase_33 AC 220 ms
42,540 KB
testcase_34 AC 214 ms
42,584 KB
testcase_35 AC 205 ms
42,228 KB
testcase_36 AC 167 ms
41,608 KB
testcase_37 AC 165 ms
41,816 KB
testcase_38 AC 175 ms
41,852 KB
testcase_39 AC 177 ms
42,092 KB
testcase_40 AC 215 ms
42,496 KB
testcase_41 AC 226 ms
42,740 KB
testcase_42 AC 170 ms
41,884 KB
testcase_43 AC 166 ms
41,636 KB
testcase_44 AC 222 ms
42,792 KB
testcase_45 AC 214 ms
42,852 KB
testcase_46 AC 133 ms
40,356 KB
testcase_47 AC 224 ms
42,552 KB
testcase_48 AC 164 ms
41,780 KB
testcase_49 AC 173 ms
42,036 KB
testcase_50 AC 149 ms
41,340 KB
testcase_51 AC 220 ms
42,692 KB
testcase_52 AC 217 ms
42,392 KB
testcase_53 AC 167 ms
41,936 KB
testcase_54 AC 224 ms
42,672 KB
testcase_55 AC 234 ms
43,100 KB
testcase_56 AC 220 ms
42,808 KB
testcase_57 AC 161 ms
41,996 KB
testcase_58 AC 210 ms
42,732 KB
testcase_59 AC 229 ms
42,936 KB
testcase_60 AC 158 ms
41,672 KB
testcase_61 AC 215 ms
42,892 KB
testcase_62 AC 181 ms
41,644 KB
testcase_63 AC 208 ms
42,608 KB
testcase_64 AC 234 ms
43,240 KB
testcase_65 AC 220 ms
42,740 KB
testcase_66 AC 154 ms
41,420 KB
testcase_67 AC 225 ms
42,656 KB
testcase_68 AC 217 ms
42,716 KB
testcase_69 AC 217 ms
42,596 KB
testcase_70 AC 170 ms
42,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] list = new int[n];
		for(int i = 0; i < n; i++) {
			list[i] = sc.nextInt();
		}
		if(n == 1) {
			System.out.println(list[0]);
			System.out.println(1);
			return;
		}
		int[] dp = new int[n];
		
		int[] pre = new int[n];
		dp[0] = list[0];
		pre[0] = -1;
		dp[1] = list[1];
		pre[1] = -1;
		
		
		for(int i = 2; i < n; i++) {
			if(i >= 3) {
				int a = dp[i-2] + list[i];
				int b = dp[i-3] + list[i];
				if(a < b) {
					dp[i] = b;
					pre[i] = i-3;
				}
				if(a >= b) {
					dp[i] = a;
					pre[i] = i-2;
				}
			}
			else {
				dp[i] = dp[i-2] + list[i];
				pre[i] = i-2;
			}
		}
		ArrayList<Integer> plist = new ArrayList<Integer>();
		if(dp[n-1] >= dp[n-2]) {
			int prenumber = n-1;
			while(prenumber != -1) {
				plist.add(prenumber);
				prenumber = pre[prenumber];
				
			}
		}
		else {
			int prenumber = n-2;
			while(prenumber != -1) {
				plist.add(prenumber);
				prenumber = pre[prenumber];
				
			}
		}
		System.out.println(Math.max(dp[n-1], dp[n-2]));
		System.out.print((plist.get(plist.size()-1) + 1));
		for(int i = plist.size()-2; i >= 0; i--) {
			System.out.print(" " + (plist.get(i) + 1));
		}
		System.out.println();
		
		
		
	}
}
0