結果

問題 No.3 ビットすごろく
ユーザー DAZYDAZY
提出日時 2017-05-21 20:43:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 349 ms / 5,000 ms
コード長 1,910 bytes
コンパイル時間 3,640 ms
コンパイル使用メモリ 77,664 KB
実行使用メモリ 179,256 KB
最終ジャッジ日時 2024-07-01 08:43:27
合計ジャッジ時間 11,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,048 KB
testcase_01 AC 130 ms
41,200 KB
testcase_02 AC 117 ms
40,260 KB
testcase_03 AC 169 ms
47,864 KB
testcase_04 AC 147 ms
41,856 KB
testcase_05 AC 216 ms
75,552 KB
testcase_06 AC 170 ms
52,188 KB
testcase_07 AC 162 ms
43,664 KB
testcase_08 AC 197 ms
58,660 KB
testcase_09 AC 226 ms
101,108 KB
testcase_10 AC 281 ms
122,056 KB
testcase_11 AC 201 ms
80,132 KB
testcase_12 AC 211 ms
75,384 KB
testcase_13 AC 171 ms
47,988 KB
testcase_14 AC 267 ms
122,028 KB
testcase_15 AC 296 ms
137,236 KB
testcase_16 AC 285 ms
124,012 KB
testcase_17 AC 298 ms
134,628 KB
testcase_18 AC 167 ms
44,388 KB
testcase_19 AC 349 ms
178,876 KB
testcase_20 AC 150 ms
41,712 KB
testcase_21 AC 135 ms
41,200 KB
testcase_22 AC 266 ms
120,856 KB
testcase_23 AC 344 ms
179,256 KB
testcase_24 AC 336 ms
179,240 KB
testcase_25 AC 301 ms
137,272 KB
testcase_26 AC 129 ms
41,188 KB
testcase_27 AC 171 ms
47,936 KB
testcase_28 AC 298 ms
121,888 KB
testcase_29 AC 219 ms
81,556 KB
testcase_30 AC 130 ms
41,024 KB
testcase_31 AC 133 ms
41,144 KB
testcase_32 AC 218 ms
76,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No3 {
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        //tmp:今いるマスの目のコピー
        //mov:動けるマス数 loc:今いるマス目
        //flag:一度も動けない事があるかを監視
        int tmp;
        int ans = -1;
        int mov;
        boolean flag;

        //すでに行ったことのあるマスを記憶
        boolean[] went = new boolean[N+1];
        //次に行くマスを記憶
        boolean[][] next = new boolean[N+1][N+1];

        for (int i = 0; i < N+1; i++) {
            went[i] = false;
            for (int j = 0; j < N+1; j++) {
                next[i][j] = false;
            }
        }
        next[1][1] = true;
        went[1] = true;
        for (int i = 1; i < N+1; i++) {
            flag = false;
            for (int j = 1; j < N+1; j++) {
                if (next[i][j]) {
                    flag = true;
                    if (j == N) {
                        ans = i;
                        break;
                    }
                    mov = 0;
                    tmp = j;
                    //2進数のときbitが1の数を数える
                    while (tmp != 0) {
                        mov += tmp & 1;
                        tmp = tmp >> 1;
                    }
                    //次に行けるマスを追加
                    if (j + mov < N + 1 && !went[j + mov]) {
                        next[i + 1][j + mov] = true;
                        went[j + mov] = true;
                    }
                    if (j - mov > 0 && !went[j - mov]) {
                        next[i + 1][j - mov] = true;
                        went[j - mov] = true;
                    }
                }
            }
            if (!flag) break;
        }
        System.out.print(ans);
    }
}
0