結果
問題 | No.3 ビットすごろく |
ユーザー | Koh Yamashita |
提出日時 | 2017-06-07 06:44:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 845 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 19,616 KB |
最終ジャッジ日時 | 2024-09-22 12:15:21 |
合計ジャッジ時間 | 7,578 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 725 ms
11,264 KB |
testcase_04 | AC | 106 ms
10,880 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
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 Counter import heapq def bsf(my_number): if my_number == 1: return 1 my_heap = list() seen = set([1]) heapq.heappush(my_heap, (1, 1)) while len(my_heap) > 0: count, node_id = heapq.heappop(my_heap) seen.add(node_id) crt_ones = get_num_ones(node_id) if node_id == my_number: return count if (0 < node_id + crt_ones <= my_number) and (node_id + crt_ones) not in seen: heapq.heappush(my_heap, (count + 1, node_id + crt_ones)) if (0 < node_id - crt_ones <= my_number) and (node_id - crt_ones) not in seen: heapq.heappush(my_heap, (count + 1, node_id - crt_ones)) return -1 def get_num_ones(my_int): return Counter(str(bin(my_int))[2:]).get('1') if __name__ == '__main__': print(bsf(int(input())))