結果
問題 | No.3 ビットすごろく |
ユーザー | pawn0818 |
提出日時 | 2018-09-30 01:09:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,514 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-12 08:56:54 |
合計ジャッジ時間 | 2,787 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 38 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 49 ms
10,880 KB |
testcase_06 | AC | 39 ms
10,880 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 48 ms
10,752 KB |
testcase_13 | AC | 36 ms
10,624 KB |
testcase_14 | AC | 58 ms
10,880 KB |
testcase_15 | AC | 68 ms
11,008 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 58 ms
10,880 KB |
testcase_23 | AC | 66 ms
11,008 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 29 ms
10,752 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
# -*- coding: utf-8 -*- # !/usr/bin/env python # vim: set fileencoding=utf-8 : """ # # Author: Noname # URL: https://github.com/pettan0818 # License: MIT License # Created: 金 9/28 23:04:27 2018 # Usage # """ from collections import deque def get(): """ """ return int(input()) def get_each_cell_num(length): """ >>> get_each_cell_num(5) [1, 1, 2, 1, 2] """ def maker(num): return sum([int(i) for i in list(bin(num)[2:])]) return [maker(i) for i in range(1, length+1)] def bfs(res, goal, route): QUE = deque([]) goal = goal - 1 # 配列と問題文のIndexは1差がある。 res[0] = 1 QUE.append(0) while QUE: # Listが空だとFalse # print(res) pos = QUE.popleft() # print(pos) if pos == goal: # ゴールに着いたら探索不要 return res for i in [route[pos], -route[pos]]: next_pos = pos + i if next_pos >= len(res): continue if next_pos >= 0 and res[next_pos] == -1: QUE.append(next_pos) # print("next_pos: ", next_pos) # print("res: ", res) # print("QUE: ", QUE) res[next_pos] = res[pos] return res def solve(length): """ >>> solve(5) """ res = [-1] * length route = get_each_cell_num(length) shortest_path = bfs(res, length, route) print(shortest_path[-1]) if __name__ == '__main__': solve(get())