結果

問題 No.3 ビットすごろく
ユーザー kjnhokjnho
提出日時 2017-02-19 13:51:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,543 ms / 5,000 ms
コード長 991 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 69,608 KB
最終ジャッジ日時 2024-07-01 08:19:42
合計ジャッジ時間 53,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,525 ms
69,332 KB
testcase_01 AC 1,509 ms
68,800 KB
testcase_02 AC 1,490 ms
68,932 KB
testcase_03 AC 1,500 ms
69,064 KB
testcase_04 AC 1,493 ms
69,456 KB
testcase_05 AC 1,523 ms
68,992 KB
testcase_06 AC 1,507 ms
69,436 KB
testcase_07 AC 1,525 ms
68,804 KB
testcase_08 AC 1,533 ms
68,716 KB
testcase_09 AC 1,523 ms
69,508 KB
testcase_10 AC 1,535 ms
69,268 KB
testcase_11 AC 1,513 ms
68,980 KB
testcase_12 AC 1,507 ms
69,132 KB
testcase_13 AC 1,509 ms
69,456 KB
testcase_14 AC 1,530 ms
69,252 KB
testcase_15 AC 1,527 ms
69,592 KB
testcase_16 AC 1,524 ms
69,172 KB
testcase_17 AC 1,508 ms
68,952 KB
testcase_18 AC 1,515 ms
69,196 KB
testcase_19 AC 1,533 ms
69,448 KB
testcase_20 AC 1,543 ms
68,932 KB
testcase_21 AC 1,517 ms
69,332 KB
testcase_22 AC 1,531 ms
69,192 KB
testcase_23 AC 1,503 ms
68,960 KB
testcase_24 AC 1,500 ms
69,036 KB
testcase_25 AC 1,496 ms
69,344 KB
testcase_26 AC 1,480 ms
69,316 KB
testcase_27 AC 1,500 ms
68,796 KB
testcase_28 AC 1,524 ms
69,052 KB
testcase_29 AC 1,511 ms
68,976 KB
testcase_30 AC 1,486 ms
68,928 KB
testcase_31 AC 1,498 ms
69,048 KB
testcase_32 AC 1,502 ms
69,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
from scipy import integrate
from operator import itemgetter
from collections import defaultdict as dd
from collections import Counter
import numpy as np
import fractions
import itertools
import math
import heapq
from collections import deque
from heapq import heappop, heappush, heapify
from copy import deepcopy as dcopy

N = int(input())
# N = 5000

stack = deque()
stack.append((1, 0)) # count, position, arrived, root
D = [1] + [float("inf")]*(N-1) # saitankyorimap

flag = False
while len(stack) != 0:
    count, position = stack.popleft()
    number = position + 1

    if number == N:
        print(count)
        flag = True
        break

    move_size = bin(number).count("1")
    for move in (move_size, - move_size):
        new_position = position + move
        new_count = count + 1
        if (0 <= new_position <= N-1) and D[new_position] > count:
            D[new_position] = count
            stack.append((new_count, new_position))

if not flag:
    print(-1)
0