結果

問題 No.3 ビットすごろく
ユーザー H3PO4H3PO4
提出日時 2020-04-17 09:10:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,007 ms / 5,000 ms
コード長 490 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,380 KB
最終ジャッジ日時 2024-07-01 09:46:09
合計ジャッジ時間 35,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 943 ms
54,092 KB
testcase_01 AC 954 ms
54,356 KB
testcase_02 AC 933 ms
54,232 KB
testcase_03 AC 946 ms
54,360 KB
testcase_04 AC 952 ms
54,108 KB
testcase_05 AC 956 ms
54,616 KB
testcase_06 AC 960 ms
54,364 KB
testcase_07 AC 960 ms
54,484 KB
testcase_08 AC 961 ms
54,608 KB
testcase_09 AC 971 ms
54,996 KB
testcase_10 AC 973 ms
55,380 KB
testcase_11 AC 980 ms
55,128 KB
testcase_12 AC 963 ms
54,740 KB
testcase_13 AC 951 ms
54,224 KB
testcase_14 AC 966 ms
55,244 KB
testcase_15 AC 976 ms
55,272 KB
testcase_16 AC 967 ms
54,964 KB
testcase_17 AC 964 ms
55,148 KB
testcase_18 AC 941 ms
54,612 KB
testcase_19 AC 1,007 ms
55,160 KB
testcase_20 AC 975 ms
54,352 KB
testcase_21 AC 952 ms
54,220 KB
testcase_22 AC 973 ms
54,992 KB
testcase_23 AC 979 ms
54,888 KB
testcase_24 AC 968 ms
55,212 KB
testcase_25 AC 964 ms
55,136 KB
testcase_26 AC 940 ms
54,104 KB
testcase_27 AC 962 ms
54,092 KB
testcase_28 AC 968 ms
55,256 KB
testcase_29 AC 964 ms
54,604 KB
testcase_30 AC 957 ms
54,356 KB
testcase_31 AC 951 ms
54,224 KB
testcase_32 AC 964 ms
54,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.sparse.csgraph import dijkstra
from scipy.sparse import csr_matrix

N = int(input())
Frm, To = [], []
for i in range(1, N + 1):
    b = bin(i).count('1')
    if i - b >= 1:
        Frm.append(i)
        To.append(i - b)
    if i + b <= N:
        Frm.append(i)
        To.append(i + b)

matr = csr_matrix((np.ones_like(Frm, dtype=int), (Frm, To)), shape=(N + 1, N + 1))
way = dijkstra(matr, indices=1).astype(int)
print(ans if (ans := way[N] + 1) > 0 else -1)
0