結果
問題 | No.3 ビットすごろく |
ユーザー | _kyou |
提出日時 | 2024-06-09 15:36:51 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 44 ms / 5,000 ms |
コード長 | 584 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-12-30 08:08:35 |
合計ジャッジ時間 | 2,711 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
from collections import deque N = int(input()) def bfs(N: int) -> int: dist = [-1] * (N + 1) # 各マスへの最短距離リスト dist[1] = 1 que = deque([1]) while que: now_p = que.popleft() # queから取り出す for p in [-1, 1]: # 進む/戻る next_p = now_p + p * bin(now_p).count('1') if next_p == N: return dist[now_p] + 1 elif (1 <= next_p <= N) and dist[next_p] == -1: que.append(next_p) dist[next_p] = dist[now_p] + 1 return dist[N] print(bfs(N))