結果

問題 No.2010 Magical Floor
ユーザー Kiri8128Kiri8128
提出日時 2020-11-22 01:54:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-06 05:50:06
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 38 ms
10,752 KB
testcase_12 AC 41 ms
10,752 KB
testcase_13 AC 41 ms
10,752 KB
testcase_14 AC 44 ms
10,880 KB
testcase_15 AC 43 ms
10,880 KB
testcase_16 AC 41 ms
10,752 KB
testcase_17 AC 41 ms
10,752 KB
testcase_18 AC 43 ms
10,880 KB
testcase_19 AC 433 ms
10,880 KB
testcase_20 AC 462 ms
10,752 KB
testcase_21 AC 182 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
T = int(input())
for _ in range(T):
    N, X = map(int, input().split())
    H = [int(a) for a in input().split()]
    A = [int(a) for a in input().split()]
    HH = [H[0]] + [h2 - h1 for h1, h2 in zip(H, H[1:])]
    mi = ans = 1 << 60
    for i in range(N):
        if A[i] >= mi: continue
        mi = A[i]
        t = 0
        sx = 0
        for j in range(i):
            a = A[i] / A[j]
            b = sqrt(1 - a ** 2)
            t += A[j] * HH[j] / b
            sx += a * HH[j] / b
        if sx * 2 > X: continue
        t += (X / 2 - sx) * A[i]
        if t * 2 < ans:
            ans = t * 2
    print(ans)
0