結果
問題 | No.3 ビットすごろく |
ユーザー | kashiwagi513 |
提出日時 | 2019-02-21 20:26:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,551 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 19,744 KB |
最終ジャッジ日時 | 2024-04-30 22:24:10 |
合計ジャッジ時間 | 7,927 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,880 KB |
testcase_01 | AC | 28 ms
11,008 KB |
testcase_02 | AC | 27 ms
10,880 KB |
testcase_03 | AC | 861 ms
11,264 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 4,273 ms
12,032 KB |
testcase_06 | AC | 1,049 ms
11,264 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
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 | -- | - |
ソースコード
# -*- 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)