結果

問題 No.2010 Magical Floor
ユーザー mkawa2mkawa2
提出日時 2022-07-15 22:27:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,255 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-06-27 19:04:39
合計ジャッジ時間 23,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
87,444 KB
testcase_01 AC 120 ms
81,576 KB
testcase_02 AC 165 ms
82,308 KB
testcase_03 AC 212 ms
82,672 KB
testcase_04 AC 263 ms
83,288 KB
testcase_05 AC 335 ms
83,504 KB
testcase_06 AC 365 ms
83,632 KB
testcase_07 AC 414 ms
83,904 KB
testcase_08 AC 476 ms
84,008 KB
testcase_09 AC 527 ms
84,160 KB
testcase_10 AC 577 ms
84,892 KB
testcase_11 AC 1,631 ms
91,344 KB
testcase_12 AC 1,486 ms
92,860 KB
testcase_13 AC 1,848 ms
91,516 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

from decimal import Decimal

def solve():
    n, x = LI()
    hh = [0]+LI()
    aa = LI()

    ans = inf
    mn = inf
    for i, a in enumerate(aa):
        if a >= mn: continue
        mn = a
        di = Decimal(x)
        t = Decimal(0)
        for j in range(i):
            h = hh[j+1]-hh[j]
            d = Decimal(a*h/(aa[j]**2-a**2)**0.5)
            di -= d*2
            t += (d**2+h**2).sqrt()*aa[j]*2
        if di < 0: break
        t += di*a
        ans = min(ans, t)

    print(ans)

for _ in range(II()):
    solve()
0