結果

問題 No.3 ビットすごろく
ユーザー atkrymatkrym
提出日時 2016-11-07 01:05:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 937 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 56,640 KB
最終ジャッジ日時 2024-11-25 03:31:59
合計ジャッジ時間 6,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,720 KB
testcase_01 AC 116 ms
53,592 KB
testcase_02 AC 105 ms
52,716 KB
testcase_03 AC 119 ms
53,880 KB
testcase_04 WA -
testcase_05 AC 135 ms
54,332 KB
testcase_06 AC 134 ms
54,140 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 125 ms
54,080 KB
testcase_13 AC 106 ms
52,964 KB
testcase_14 AC 132 ms
54,376 KB
testcase_15 AC 132 ms
54,620 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 103 ms
52,520 KB
testcase_22 AC 136 ms
54,516 KB
testcase_23 AC 134 ms
54,592 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 116 ms
54,036 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    private static int[] dp;
    private static int n;
    public static void main(String[] args) throws Exception {
        n = sc.nextInt();
        dp = new int[n+1];
        dfs(1,1);
        
        int ret = dp[n];
        if (ret==0) {
            System.out.println(-1);
        } else {
            System.out.println(ret);
        }
    }
    
    private static void dfs(int i, int cnt) {
        if (dp[i]>0) return;
        dp[i] = cnt;
        int c = count(i);
        if (i-c>0) {
            dfs(i-c,cnt+1);
        }
        if (i+c<=n) {
            dfs(i+c,cnt+1);
        }
    }
    
    private static int count(int val) {
        String s = Integer.toBinaryString(val);
        int cnt = 0;
        for (int i = 0;i < s.length();i++) {
            if (s.charAt(i)=='1') cnt++;
        }
        return cnt;
    }
}
0