結果

問題 No.258 回転寿司(2)
ユーザー scachescache
提出日時 2015-11-17 15:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,585 bytes
コンパイル時間 3,958 ms
コンパイル使用メモリ 85,192 KB
実行使用メモリ 48,428 KB
最終ジャッジ日時 2024-11-06 18:56:43
合計ジャッジ時間 21,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
48,016 KB
testcase_01 AC 261 ms
47,960 KB
testcase_02 AC 232 ms
44,240 KB
testcase_03 AC 136 ms
41,324 KB
testcase_04 AC 206 ms
43,268 KB
testcase_05 AC 207 ms
42,944 KB
testcase_06 AC 259 ms
48,184 KB
testcase_07 AC 172 ms
42,244 KB
testcase_08 AC 196 ms
42,696 KB
testcase_09 AC 174 ms
41,996 KB
testcase_10 AC 156 ms
41,532 KB
testcase_11 AC 189 ms
42,596 KB
testcase_12 AC 221 ms
43,012 KB
testcase_13 AC 168 ms
41,924 KB
testcase_14 AC 254 ms
48,376 KB
testcase_15 AC 171 ms
41,984 KB
testcase_16 AC 170 ms
42,032 KB
testcase_17 AC 170 ms
42,304 KB
testcase_18 AC 256 ms
48,276 KB
testcase_19 AC 141 ms
41,620 KB
testcase_20 AC 223 ms
44,380 KB
testcase_21 AC 251 ms
48,404 KB
testcase_22 AC 137 ms
41,256 KB
testcase_23 AC 137 ms
41,244 KB
testcase_24 AC 135 ms
41,148 KB
testcase_25 AC 127 ms
41,148 KB
testcase_26 AC 231 ms
44,024 KB
testcase_27 AC 177 ms
41,924 KB
testcase_28 AC 264 ms
48,216 KB
testcase_29 AC 184 ms
42,708 KB
testcase_30 AC 148 ms
41,508 KB
testcase_31 AC 146 ms
41,832 KB
testcase_32 AC 164 ms
42,048 KB
testcase_33 AC 241 ms
44,904 KB
testcase_34 AC 210 ms
43,656 KB
testcase_35 AC 202 ms
43,304 KB
testcase_36 AC 148 ms
41,424 KB
testcase_37 AC 147 ms
41,364 KB
testcase_38 AC 182 ms
42,520 KB
testcase_39 AC 183 ms
42,504 KB
testcase_40 AC 236 ms
44,216 KB
testcase_41 AC 242 ms
45,608 KB
testcase_42 AC 172 ms
42,084 KB
testcase_43 AC 156 ms
41,964 KB
testcase_44 AC 252 ms
48,364 KB
testcase_45 AC 235 ms
44,592 KB
testcase_46 AC 132 ms
41,424 KB
testcase_47 AC 235 ms
44,688 KB
testcase_48 AC 152 ms
41,796 KB
testcase_49 AC 172 ms
42,300 KB
testcase_50 AC 135 ms
41,112 KB
testcase_51 AC 217 ms
43,688 KB
testcase_52 AC 220 ms
43,488 KB
testcase_53 AC 151 ms
41,532 KB
testcase_54 AC 231 ms
44,368 KB
testcase_55 AC 261 ms
48,416 KB
testcase_56 AC 225 ms
45,012 KB
testcase_57 AC 152 ms
41,776 KB
testcase_58 AC 207 ms
43,252 KB
testcase_59 AC 269 ms
48,428 KB
testcase_60 AC 150 ms
41,532 KB
testcase_61 AC 237 ms
44,992 KB
testcase_62 AC 166 ms
42,164 KB
testcase_63 AC 229 ms
44,124 KB
testcase_64 AC 264 ms
48,188 KB
testcase_65 AC 227 ms
44,464 KB
testcase_66 AC 138 ms
41,288 KB
testcase_67 AC 245 ms
48,200 KB
testcase_68 AC 264 ms
47,964 KB
testcase_69 AC 236 ms
45,164 KB
testcase_70 AC 176 ms
41,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main258 {
    public static void main(String[] args){
        new Main258();
    }

    public Main258(){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] v = new int[n];
        for(int i=0;i<n;i++)
            v[i] = sc.nextInt();

        solve(v);
    }

    private void solve(int[] v){
        int n = v.length;
        int[][] dp = new int[n+1][n];

        for(int i=0;i<dp[1].length;i++)
            dp[1][i] = v[0];

        for(int i=2;i<=n;i++){
            for(int j=0;j<n;j++){
                dp[i][j] = Math.max(dp[i-1][j], dp[i-2][j]+v[i-1]);
            }
        }

        int mindex = 0;
        for(int i=0;i<n;i++){
            if(dp[n][mindex]<dp[n][i]){
                mindex = i;
            }
        }
        System.out.println(dp[n][mindex]);

        ArrayList<Integer> l = new ArrayList<>();
        int cur = n;
        while(cur>1){
            while(dp[cur][mindex]==dp[cur-1][mindex]){
                cur--;
            }
            if(cur<=1)
                break;

            for(int i=0;i<n;i++) {
                if(dp[cur][mindex]==dp[cur-2][i]+v[cur-1]){
                    l.add(cur);
                    mindex = i;
                    cur-=2;
                    break;
                }
            }
        }

        if(cur==1)
            l.add(1);

        for(int i=l.size()-1;0<i;i--){
            System.out.print(l.get(i)+" ");
        }
        System.out.println(l.get(0));
    }


}
0