結果
問題 | No.3 ビットすごろく |
ユーザー | dy |
提出日時 | 2020-10-24 21:53:33 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 684 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 272,924 KB |
最終ジャッジ日時 | 2024-07-21 15:47:11 |
合計ジャッジ時間 | 16,596 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,376 KB |
testcase_01 | AC | 44 ms
53,120 KB |
testcase_02 | AC | 44 ms
53,376 KB |
testcase_03 | AC | 84 ms
76,544 KB |
testcase_04 | AC | 62 ms
68,224 KB |
testcase_05 | AC | 250 ms
80,256 KB |
testcase_06 | AC | 85 ms
76,416 KB |
testcase_07 | AC | 76 ms
76,288 KB |
testcase_08 | AC | 133 ms
77,440 KB |
testcase_09 | AC | 1,272 ms
114,688 KB |
testcase_10 | AC | 3,335 ms
207,616 KB |
testcase_11 | AC | 780 ms
97,792 KB |
testcase_12 | AC | 211 ms
79,360 KB |
testcase_13 | AC | 81 ms
76,288 KB |
testcase_14 | AC | 2,781 ms
181,632 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
from collections import deque n = int(input()) steps = [None, 1] visited = [None, False] for _ in range(2, n+1): steps.append(-1) visited.append(False) q = deque([]) start = 1 q.append(start) while q: v = q.popleft() visited[v] = True if v == n: # print("goal") break num = bin(v).count('1') for next_v in [v + num, v - num]: if 1 <= next_v and next_v <= n: if visited[next_v] == False: q.append(next_v) if steps[next_v] == -1: steps[next_v] = steps[v] + 1 else: steps[next_v] = min(steps[next_v], steps[v] + 1) print(steps[n])