結果
問題 | No.2010 Magical Floor |
ユーザー | mkawa2 |
提出日時 | 2022-07-15 22:10:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,197 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 82,300 KB |
実行使用メモリ | 69,584 KB |
最終ジャッジ日時 | 2024-06-27 18:19:50 |
合計ジャッジ時間 | 2,406 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,480 KB |
testcase_01 | AC | 40 ms
53,120 KB |
testcase_02 | AC | 40 ms
53,376 KB |
testcase_03 | AC | 41 ms
53,376 KB |
testcase_04 | AC | 41 ms
53,376 KB |
testcase_05 | AC | 43 ms
59,648 KB |
testcase_06 | AC | 45 ms
59,264 KB |
testcase_07 | AC | 48 ms
59,904 KB |
testcase_08 | AC | 46 ms
59,520 KB |
testcase_09 | AC | 45 ms
60,416 KB |
testcase_10 | AC | 46 ms
60,160 KB |
testcase_11 | AC | 58 ms
67,324 KB |
testcase_12 | AC | 59 ms
67,072 KB |
testcase_13 | AC | 65 ms
67,584 KB |
testcase_14 | AC | 59 ms
67,968 KB |
testcase_15 | AC | 59 ms
67,712 KB |
testcase_16 | AC | 57 ms
67,840 KB |
testcase_17 | WA | - |
testcase_18 | AC | 61 ms
69,248 KB |
testcase_19 | WA | - |
testcase_20 | AC | 105 ms
69,120 KB |
testcase_21 | WA | - |
ソースコード
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: break t += di*a ans = min(ans, t) print(ans) for _ in range(II()): solve()