結果

問題 No.3 ビットすごろく
ユーザー nebukuro09nebukuro09
提出日時 2016-09-02 15:22:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 936 bytes
コンパイル時間 1,404 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 80,764 KB
最終ジャッジ日時 2024-07-01 08:04:15
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
77,608 KB
testcase_01 AC 79 ms
77,184 KB
testcase_02 AC 79 ms
77,824 KB
testcase_03 AC 119 ms
79,232 KB
testcase_04 AC 85 ms
78,080 KB
testcase_05 AC 134 ms
80,128 KB
testcase_06 AC 119 ms
79,616 KB
testcase_07 AC 102 ms
78,472 KB
testcase_08 AC 134 ms
80,000 KB
testcase_09 AC 145 ms
80,144 KB
testcase_10 AC 151 ms
80,128 KB
testcase_11 AC 144 ms
79,736 KB
testcase_12 AC 137 ms
79,632 KB
testcase_13 AC 110 ms
78,592 KB
testcase_14 AC 153 ms
80,060 KB
testcase_15 AC 156 ms
80,260 KB
testcase_16 AC 156 ms
80,764 KB
testcase_17 AC 154 ms
80,624 KB
testcase_18 AC 105 ms
78,464 KB
testcase_19 AC 155 ms
80,512 KB
testcase_20 AC 84 ms
77,056 KB
testcase_21 AC 79 ms
77,312 KB
testcase_22 AC 148 ms
80,500 KB
testcase_23 AC 153 ms
80,128 KB
testcase_24 AC 155 ms
80,664 KB
testcase_25 AC 152 ms
80,384 KB
testcase_26 AC 80 ms
77,684 KB
testcase_27 AC 117 ms
79,232 KB
testcase_28 AC 152 ms
80,424 KB
testcase_29 AC 141 ms
79,872 KB
testcase_30 AC 81 ms
77,440 KB
testcase_31 AC 81 ms
77,184 KB
testcase_32 AC 137 ms
79,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = input()
def bitcount(i):
    i = i - ((i >> 1) & 0x55555555)
    i = (i & 0x33333333) + ((i >> 2) & 0x33333333)
    i = (i + (i >> 4)) & 0x0f0f0f0f
    i = i + (i >> 8)
    i = i + (i >> 16)
    return i & 0x3f

bc = [bitcount(i) for i in xrange(10001)]
rinsetsu = [[] for i in xrange(N+1)]
for i in xrange(1, N+1):
    m = i + bc[i]
    if m <= N:
        rinsetsu[i].append(m)
    m = i - bc[i]
    if m >= 1:
        rinsetsu[i].append(m)
        
def dijkstra(start):
    d = [float('inf') for i in xrange(N+1)]
    d[start] = 0
    q = []
    heapq.heappush(q, (0, start))
    while len(q) != 0:
        c, node = heapq.heappop(q)
        if c > d[node]:
            continue
        for nn in rinsetsu[node]:
            alt = d[node] + 1
            if alt < d[nn]:
                d[nn] = alt
                heapq.heappush(q, (alt, nn))
    return d

d = dijkstra(1)[N] 
print -1 if d == float('inf') else d+1
0