結果

問題 No.3 ビットすごろく
ユーザー shokayamorishokayamori
提出日時 2020-11-28 00:31:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 594 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,600 KB
最終ジャッジ日時 2024-07-01 10:01:05
合計ジャッジ時間 20,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
43,828 KB
testcase_01 AC 540 ms
44,208 KB
testcase_02 AC 536 ms
44,212 KB
testcase_03 AC 550 ms
44,240 KB
testcase_04 AC 545 ms
43,828 KB
testcase_05 AC 572 ms
43,952 KB
testcase_06 AC 553 ms
44,208 KB
testcase_07 AC 559 ms
44,336 KB
testcase_08 AC 552 ms
43,836 KB
testcase_09 AC 553 ms
43,828 KB
testcase_10 AC 562 ms
44,180 KB
testcase_11 AC 552 ms
43,964 KB
testcase_12 AC 563 ms
44,084 KB
testcase_13 AC 542 ms
43,956 KB
testcase_14 AC 549 ms
43,832 KB
testcase_15 AC 569 ms
44,080 KB
testcase_16 AC 555 ms
44,332 KB
testcase_17 AC 556 ms
44,468 KB
testcase_18 AC 537 ms
43,960 KB
testcase_19 AC 559 ms
44,468 KB
testcase_20 AC 532 ms
44,204 KB
testcase_21 AC 530 ms
44,080 KB
testcase_22 AC 564 ms
43,952 KB
testcase_23 AC 551 ms
44,592 KB
testcase_24 AC 574 ms
44,600 KB
testcase_25 AC 563 ms
44,468 KB
testcase_26 AC 526 ms
43,960 KB
testcase_27 AC 540 ms
44,080 KB
testcase_28 AC 556 ms
44,204 KB
testcase_29 AC 594 ms
43,952 KB
testcase_30 AC 568 ms
44,332 KB
testcase_31 AC 556 ms
44,208 KB
testcase_32 AC 570 ms
44,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())

lengths = [bin(i).count('1') for i in range(1, N+1)]

g = []
for i, length in enumerate(lengths):
    backward = i - length
    forward = i + length
    edges = []
    if not backward < 0:
        edges.append(backward)
    if not forward > N-1:
        edges.append(forward)
    g.append(edges)

distances = np.full_like(lengths, -1)
que = []

distances[0] = 1
que.append(0)

while que!=[]:
    v = que.pop(0)
    for next_v in g[v]:
        if distances[next_v]!=-1:
            continue
        distances[next_v] = distances[v] + 1
        que.append(next_v)
print(distances[N-1])
0