結果
問題 | No.2010 Magical Floor |
ユーザー | mkawa2 |
提出日時 | 2022-07-15 22:38:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 108 ms / 2,000 ms |
コード長 | 1,210 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 71,320 KB |
最終ジャッジ日時 | 2024-06-27 19:29:11 |
合計ジャッジ時間 | 2,257 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,316 KB |
testcase_01 | AC | 43 ms
55,032 KB |
testcase_02 | AC | 40 ms
53,468 KB |
testcase_03 | AC | 41 ms
53,472 KB |
testcase_04 | AC | 41 ms
54,136 KB |
testcase_05 | AC | 43 ms
59,896 KB |
testcase_06 | AC | 44 ms
60,228 KB |
testcase_07 | AC | 45 ms
61,420 KB |
testcase_08 | AC | 44 ms
60,104 KB |
testcase_09 | AC | 44 ms
61,752 KB |
testcase_10 | AC | 45 ms
61,272 KB |
testcase_11 | AC | 57 ms
68,248 KB |
testcase_12 | AC | 56 ms
67,900 KB |
testcase_13 | AC | 56 ms
68,432 KB |
testcase_14 | AC | 58 ms
69,408 KB |
testcase_15 | AC | 57 ms
69,132 KB |
testcase_16 | AC | 56 ms
68,532 KB |
testcase_17 | AC | 57 ms
68,812 KB |
testcase_18 | AC | 62 ms
69,988 KB |
testcase_19 | AC | 108 ms
70,900 KB |
testcase_20 | AC | 108 ms
71,320 KB |
testcase_21 | AC | 79 ms
68,160 KB |
ソースコード
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 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 = x t = 0 for j in range(i): h = hh[j+1]-hh[j] d = a*h/(aa[j]**2-a**2)**0.5 di -= d*2 t += (d**2+h**2)**0.5*aa[j]*2 if di < 0: continue t += di*a ans = min(ans, t) print(f"{ans:.10f}") for _ in range(II()): solve()