結果

問題 No.3 ビットすごろく
ユーザー pajannatpajannat
提出日時 2021-04-11 17:56:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 975 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-06-27 12:38:53
合計ジャッジ時間 4,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 62 ms
11,648 KB
testcase_04 AC 39 ms
11,136 KB
testcase_05 AC 115 ms
12,800 KB
testcase_06 AC 68 ms
11,776 KB
testcase_07 AC 50 ms
11,392 KB
testcase_08 AC 95 ms
12,416 KB
testcase_09 AC 138 ms
13,440 KB
testcase_10 AC 162 ms
14,208 KB
testcase_11 AC 129 ms
13,184 KB
testcase_12 AC 107 ms
12,928 KB
testcase_13 AC 57 ms
11,648 KB
testcase_14 AC 157 ms
13,952 KB
testcase_15 AC 192 ms
14,848 KB
testcase_16 AC 180 ms
14,464 KB
testcase_17 AC 190 ms
14,720 KB
testcase_18 AC 53 ms
11,392 KB
testcase_19 AC 196 ms
14,848 KB
testcase_20 AC 34 ms
11,008 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 157 ms
14,208 KB
testcase_23 AC 193 ms
14,720 KB
testcase_24 AC 194 ms
14,720 KB
testcase_25 AC 193 ms
14,976 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 AC 60 ms
11,648 KB
testcase_28 AC 177 ms
14,464 KB
testcase_29 AC 131 ms
13,312 KB
testcase_30 AC 29 ms
10,880 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 122 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	N = int(input())

	# 10進数を2進数に変換
	def BitTrans(n):
		i = 0
		bit = []
		while n > 0:
			bit.insert(0, n % 2)
			n = int(n / 2)
			i += 1
		return bit

	# 2進数表記に含まれる1の数を数える
	def BitCount(bit):
		cnt = 0
		for i in bit:
			cnt += i
		return cnt

	list = []
	cnt = 0
	for i in range(1,N):
		if (i - BitCount(BitTrans(i))) > 0:
			list.append([i,(i - BitCount(BitTrans(i)))])
			cnt += 1
		if (i + BitCount(BitTrans(i))) < N + 1:
			list.append([i, (i + BitCount(BitTrans(i)))])
			cnt += 1


	from collections import deque

	n, m = N, cnt

	graph = [[] for _ in range(n+1)]

	for j in range(m):
		a, b =  list[j][0], list[j][1]
		graph[a].append(b)

	dist = [-1] * (n+1)
	dist[0] = 0
	dist[1] = 1

	d = deque()
	d.append(1)

	while d:
		v = d.popleft()
		for i in graph[v]:
			if dist[i] != -1:
				continue
			dist[i] = dist[v] + 1
			d.append(i)

	ans = dist[1:]
	print(ans[-1])

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