結果
問題 | No.3 ビットすごろく |
ユーザー | mkawa2 |
提出日時 | 2020-01-02 23:11:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,143 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 55,312 KB |
最終ジャッジ日時 | 2024-05-02 06:49:23 |
合計ジャッジ時間 | 14,871 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 463 ms
44,648 KB |
testcase_01 | AC | 451 ms
44,656 KB |
testcase_02 | AC | 449 ms
44,912 KB |
testcase_03 | AC | 667 ms
44,528 KB |
testcase_04 | AC | 470 ms
44,904 KB |
testcase_05 | AC | 2,749 ms
45,412 KB |
testcase_06 | AC | 713 ms
44,904 KB |
testcase_07 | AC | 575 ms
44,780 KB |
testcase_08 | AC | 1,120 ms
44,652 KB |
testcase_09 | TLE | - |
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 itertools import * from bisect import * #from math import * from collections import * from heapq import * from random import * from decimal import * import numpy as np import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def MI1(): return map(int1, sys.stdin.readline().split()) def MF(): return map(float, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LF(): return list(map(float, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] dij = [(1, 0), (0, 1), (-1, 0), (0, -1)] def main(): n=II() hp=[] heappush(hp,[1,1]) cnt=[-1]*(n+1) while hp: c,u=heappop(hp) if u==n: print(c) exit() d=bin(u).count("1") cnt[u]=c if u+d<=n and cnt[u+d]==-1:heappush(hp,[c+1,u+d]) if u-d>1 and cnt[u-d]==-1:heappush(hp,[c+1,u-d]) print(-1) main()