結果

問題 No.3 ビットすごろく
ユーザー jp_stejp_ste
提出日時 2016-03-04 13:29:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 956 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 56,108 KB
最終ジャッジ日時 2024-09-24 14:03:22
合計ジャッジ時間 7,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,096 KB
testcase_01 AC 122 ms
54,100 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 125 ms
53,920 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 130 ms
54,268 KB
testcase_08 AC 129 ms
54,308 KB
testcase_09 AC 132 ms
54,640 KB
testcase_10 AC 126 ms
54,540 KB
testcase_11 AC 123 ms
54,044 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 114 ms
53,052 KB
testcase_17 AC 126 ms
54,188 KB
testcase_18 AC 132 ms
54,088 KB
testcase_19 AC 122 ms
54,268 KB
testcase_20 AC 126 ms
53,984 KB
testcase_21 AC 120 ms
54,380 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 130 ms
54,260 KB
testcase_25 AC 131 ms
54,288 KB
testcase_26 AC 124 ms
54,204 KB
testcase_27 AC 132 ms
56,108 KB
testcase_28 AC 118 ms
53,080 KB
testcase_29 AC 128 ms
54,184 KB
testcase_30 AC 125 ms
53,920 KB
testcase_31 AC 123 ms
54,212 KB
testcase_32 AC 125 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    
    static int N;
    static int minCount[];
    
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            N = scan.nextInt();
            minCount = new int[N+1];
            Arrays.fill(minCount, Integer.MAX_VALUE);
            minCount[1] = 1;
            
            solve(1, 1);
            System.out.println(minCount[N]);
        }
    }
    
    static void solve(int p, int c) {        
        int front = p + Integer.bitCount(p);
        if(front <= N) {
            if(c+1 < minCount[front]) {
                minCount[front] = c+1;
                solve(front, c+1);
            }
        }
        
        int back = p - Integer.bitCount(p);
        if(back >= 1) {
            if(c+1 < minCount[back]) {
                minCount[back] = c+1;
                solve(back, c+1);
            }
        }
    }
}
0