結果

問題 No.3 ビットすごろく
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-21 20:26:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,551 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-11-20 20:43:14
合計ジャッジ時間 137,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,472 KB
testcase_01 AC 32 ms
16,128 KB
testcase_02 AC 32 ms
22,912 KB
testcase_03 AC 974 ms
16,384 KB
testcase_04 TLE -
testcase_05 AC 4,724 ms
23,552 KB
testcase_06 AC 1,189 ms
23,168 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 4,481 ms
16,896 KB
testcase_13 AC 2,053 ms
23,552 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2,475 ms
24,960 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 31 ms
10,752 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 80 ms
11,008 KB
testcase_31 AC 169 ms
11,136 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import sys
import os

class Option:
    val = []
    def isNone(v):
        return isinstance(v, _None)
    def unwrap(v):
        return v.val[0]

class Some(Option):
    def __init__(self, v):
        self.val = [v]
    def __str__(self):
        return "Some(" + str(self.val[0]) + ")"

class _None(Option):
    def __init__(self):
        self.val = []
    def __str__(self):
        return "_None"

def lfind(pred, ls):
    res = list(filter(pred, ls))
    if len(res) > 0:
        return Some(res[0])
    else:
        return _None()

def lookup(key, ls):
    res = lfind(lambda l: l[0] == key, ls)
    if Option.isNone(res):
        return _None()
    else:
        return Some(Option.unwrap(res)[1])

def rangeOfCell(n, acc):
    if n==0:
        return acc
    else:
        return rangeOfCell(n//2, acc+(n%2))

def updateCell(steps, n):
    r = rangeOfCell(n, 0)
    prev_ = filter(lambda v: v != -1, lookup(n-r, steps).val)
    next_ = filter(lambda v: v != -1, lookup(n+r, steps).val)
    both = list(prev_) + list(next_)
    if len(both) > 0:
        return min(both)+1
    else:
        return -1

def updateSteps(steps):
    steps_ = list(map(lambda s: (s[0], updateCell(steps, s[0])) if s[1] == -1 else s, steps))
    if steps == steps_:
        return steps_
    else:
        return updateSteps(steps_)

def solve(inputs):
    board = range(1,inputs)
    steps = list(map(lambda b: (b, -1), board)) + [(inputs, 1)]
    steps_ = updateSteps(steps)
    print(steps_[0][1])

inputs = int(input())
solve(inputs)
0