結果
問題 | No.3 ビットすごろく |
ユーザー | terasa |
提出日時 | 2022-06-03 14:27:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 68 ms / 5,000 ms |
コード長 | 1,183 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,140 KB |
実行使用メモリ | 77,864 KB |
最終ジャッジ日時 | 2024-09-21 02:17:59 |
合計ジャッジ時間 | 3,102 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
55,172 KB |
testcase_01 | AC | 42 ms
55,200 KB |
testcase_02 | AC | 43 ms
55,452 KB |
testcase_03 | AC | 55 ms
68,748 KB |
testcase_04 | AC | 46 ms
62,464 KB |
testcase_05 | AC | 59 ms
72,224 KB |
testcase_06 | AC | 59 ms
68,768 KB |
testcase_07 | AC | 58 ms
67,196 KB |
testcase_08 | AC | 62 ms
70,960 KB |
testcase_09 | AC | 61 ms
74,028 KB |
testcase_10 | AC | 68 ms
77,640 KB |
testcase_11 | AC | 58 ms
73,368 KB |
testcase_12 | AC | 60 ms
71,996 KB |
testcase_13 | AC | 55 ms
68,364 KB |
testcase_14 | AC | 65 ms
77,444 KB |
testcase_15 | AC | 66 ms
77,572 KB |
testcase_16 | AC | 66 ms
77,864 KB |
testcase_17 | AC | 68 ms
77,632 KB |
testcase_18 | AC | 57 ms
67,392 KB |
testcase_19 | AC | 68 ms
77,600 KB |
testcase_20 | AC | 44 ms
55,640 KB |
testcase_21 | AC | 41 ms
55,608 KB |
testcase_22 | AC | 67 ms
77,540 KB |
testcase_23 | AC | 67 ms
77,616 KB |
testcase_24 | AC | 68 ms
77,656 KB |
testcase_25 | AC | 67 ms
77,608 KB |
testcase_26 | AC | 42 ms
55,440 KB |
testcase_27 | AC | 55 ms
68,180 KB |
testcase_28 | AC | 66 ms
77,580 KB |
testcase_29 | AC | 60 ms
73,812 KB |
testcase_30 | AC | 43 ms
55,988 KB |
testcase_31 | AC | 44 ms
55,856 KB |
testcase_32 | AC | 62 ms
74,148 KB |
ソースコード
import sys import pypyjit import itertools import heapq import math from collections import deque, defaultdict import bisect input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) pypyjit.set_param('max_unroll_recursion=-1') def index_lt(a, x): 'return largest index s.t. A[i] < x or -1 if it does not exist' return bisect.bisect_left(a, x) - 1 def index_le(a, x): 'return largest index s.t. A[i] <= x or -1 if it does not exist' return bisect.bisect_right(a, x) - 1 def index_gt(a, x): 'return smallest index s.t. A[i] > x or len(a) if it does not exist' return bisect.bisect_right(a, x) def index_ge(a, x): 'return smallest index s.t. A[i] >= x or len(a) if it does not exist' return bisect.bisect_left(a, x) N = int(input()) E = [[] for _ in range(N + 1)] for i in range(1, N + 1): b = bin(i).count('1') if i - b > 0: E[i].append(i - b) if i + b <= N: E[i].append(i + b) INF = 1 << 30 C = [INF] * (N + 1) C[1] = 1 dq = deque([1]) while len(dq) > 0: v = dq.popleft() for d in E[v]: if C[d] > C[v] + 1: C[d] = C[v] + 1 dq.append(d) print(C[N] if C[N] < INF else -1)