結果

問題 No.258 回転寿司(2)
ユーザー GrenacheGrenache
提出日時 2015-07-31 23:25:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,235 bytes
コンパイル時間 3,780 ms
コンパイル使用メモリ 77,672 KB
実行使用メモリ 43,292 KB
最終ジャッジ日時 2024-11-06 18:48:01
合計ジャッジ時間 20,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
42,904 KB
testcase_01 AC 237 ms
43,260 KB
testcase_02 AC 222 ms
42,888 KB
testcase_03 AC 142 ms
41,420 KB
testcase_04 AC 203 ms
42,020 KB
testcase_05 AC 203 ms
42,164 KB
testcase_06 AC 219 ms
42,768 KB
testcase_07 AC 163 ms
41,736 KB
testcase_08 AC 186 ms
41,892 KB
testcase_09 AC 163 ms
41,520 KB
testcase_10 AC 150 ms
41,452 KB
testcase_11 AC 166 ms
41,896 KB
testcase_12 AC 186 ms
42,024 KB
testcase_13 AC 159 ms
41,744 KB
testcase_14 AC 218 ms
42,868 KB
testcase_15 AC 168 ms
41,792 KB
testcase_16 AC 176 ms
41,692 KB
testcase_17 AC 169 ms
41,692 KB
testcase_18 AC 222 ms
43,088 KB
testcase_19 AC 137 ms
41,300 KB
testcase_20 AC 217 ms
42,756 KB
testcase_21 AC 211 ms
43,104 KB
testcase_22 AC 130 ms
41,108 KB
testcase_23 AC 130 ms
41,520 KB
testcase_24 AC 131 ms
41,404 KB
testcase_25 AC 134 ms
41,264 KB
testcase_26 AC 211 ms
42,032 KB
testcase_27 AC 174 ms
41,748 KB
testcase_28 AC 228 ms
43,012 KB
testcase_29 AC 169 ms
41,836 KB
testcase_30 AC 156 ms
41,572 KB
testcase_31 AC 156 ms
41,268 KB
testcase_32 AC 166 ms
41,744 KB
testcase_33 AC 209 ms
42,484 KB
testcase_34 AC 197 ms
42,100 KB
testcase_35 AC 198 ms
42,492 KB
testcase_36 AC 161 ms
41,640 KB
testcase_37 AC 152 ms
41,340 KB
testcase_38 AC 168 ms
41,740 KB
testcase_39 AC 168 ms
41,648 KB
testcase_40 AC 207 ms
42,704 KB
testcase_41 AC 207 ms
42,368 KB
testcase_42 AC 161 ms
41,764 KB
testcase_43 AC 151 ms
41,624 KB
testcase_44 AC 214 ms
42,876 KB
testcase_45 AC 207 ms
42,524 KB
testcase_46 AC 136 ms
41,256 KB
testcase_47 AC 213 ms
42,780 KB
testcase_48 AC 151 ms
41,436 KB
testcase_49 AC 178 ms
41,960 KB
testcase_50 AC 137 ms
41,340 KB
testcase_51 AC 204 ms
42,840 KB
testcase_52 AC 219 ms
41,992 KB
testcase_53 AC 150 ms
41,608 KB
testcase_54 AC 211 ms
42,344 KB
testcase_55 AC 228 ms
43,292 KB
testcase_56 AC 210 ms
42,236 KB
testcase_57 AC 157 ms
41,368 KB
testcase_58 AC 202 ms
42,720 KB
testcase_59 AC 230 ms
42,824 KB
testcase_60 AC 147 ms
41,148 KB
testcase_61 AC 215 ms
42,592 KB
testcase_62 AC 173 ms
41,924 KB
testcase_63 AC 211 ms
42,160 KB
testcase_64 AC 231 ms
42,884 KB
testcase_65 AC 211 ms
42,388 KB
testcase_66 AC 139 ms
41,436 KB
testcase_67 AC 217 ms
42,572 KB
testcase_68 AC 215 ms
42,716 KB
testcase_69 AC 209 ms
42,344 KB
testcase_70 AC 164 ms
41,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Scanner;


public class Main_yukicoder258 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] dp = new int[n + 1];
        int[] prev = new int[n + 1];
        boolean[] used = new boolean[n + 1];
        for (int i = 1; i <= n; i++) {
        	int v = sc.nextInt();

        	if (i == 1) {
        		dp[i] = v;
        		prev[i] = 0;
        		used[i] = true;
        	} else {
        		if (dp[i - 1] <= dp[i - 2] + v) {
        			dp[i] = dp[i - 2] + v;
        			prev[i] = i - 2;
        			used[i] = true;
        		} else {
        			dp[i] = dp[i - 1];
        			prev[i] = i - 1;
        		}
        	}
        }

        System.out.println(dp[n]);
        Deque<Integer> st = new ArrayDeque<Integer>();
        for (int i = n; i > 0; ) {
        	if (used[i]) {
        		st.push(i);
        	}
    		i = prev[i];
        }
        boolean flag = false;
        for (int e : st) {
        	if (flag) {
        		System.out.print(" ");
        	}
        	flag = true;
        	System.out.print(e);
        }
        System.out.println("");

        sc.close();
    }
}
0