結果

問題 No.3 ビットすごろく
ユーザー 双六双六
提出日時 2020-07-22 09:20:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 1,104 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 70,676 KB
最終ジャッジ日時 2024-07-01 09:52:55
合計ジャッジ時間 2,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,040 KB
testcase_01 AC 42 ms
54,924 KB
testcase_02 AC 41 ms
54,264 KB
testcase_03 AC 56 ms
66,212 KB
testcase_04 AC 51 ms
62,824 KB
testcase_05 AC 58 ms
67,492 KB
testcase_06 AC 55 ms
66,636 KB
testcase_07 AC 57 ms
64,840 KB
testcase_08 AC 58 ms
67,828 KB
testcase_09 AC 58 ms
69,172 KB
testcase_10 AC 59 ms
69,108 KB
testcase_11 AC 58 ms
68,132 KB
testcase_12 AC 58 ms
67,212 KB
testcase_13 AC 56 ms
65,736 KB
testcase_14 AC 58 ms
68,680 KB
testcase_15 AC 59 ms
68,840 KB
testcase_16 AC 60 ms
69,112 KB
testcase_17 AC 60 ms
70,676 KB
testcase_18 AC 54 ms
65,256 KB
testcase_19 AC 60 ms
69,992 KB
testcase_20 AC 49 ms
61,408 KB
testcase_21 AC 42 ms
54,792 KB
testcase_22 AC 59 ms
69,368 KB
testcase_23 AC 60 ms
69,472 KB
testcase_24 AC 59 ms
69,356 KB
testcase_25 AC 60 ms
69,352 KB
testcase_26 AC 42 ms
54,584 KB
testcase_27 AC 55 ms
65,740 KB
testcase_28 AC 59 ms
68,556 KB
testcase_29 AC 56 ms
69,028 KB
testcase_30 AC 42 ms
54,260 KB
testcase_31 AC 42 ms
54,848 KB
testcase_32 AC 57 ms
67,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
from collections import deque
INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class Graph(object):
	def __init__(self):
		self.graph = defaultdict(list)

	def __len__(self):
		return len(self.graph)

	def add_edge(self, a, b):
		self.graph[a].append(b)

class BFS(object):
	def __init__(self, graph, s, N):
		self.g = graph.graph
		self.Q = deque(); self.Q.append(s)
		self.dist = [INF] * N; self.dist[s] = 0
		while self.Q:
			v = self.Q.popleft()
			for i in self.g[v]:
				if self.dist[i] == INF:
					self.dist[i] = self.dist[v] + 1
					self.Q.append(i)

#処理内容
def main():
	N = int(input())
	G = Graph()
	for i in range(1, N + 1):
		n = i
		cnt = 0
		while True:
			if n % 2 == 1:
				cnt += 1
			n >>= 1
			if n == 0:
				break

		if i - cnt >= 1:
			G.add_edge(i, i - cnt)
		G.add_edge(i, i + cnt)

	BF = BFS(G, 1, N + 100)
	# print(BF.dist)
	ans = BF.dist[N]
	if ans == INF:
		print(-1)
	else:
		print(ans + 1)




if __name__ == '__main__':
	main()
0