結果
問題 | No.703 ゴミ拾い Easy |
ユーザー | tjake |
提出日時 | 2018-06-15 23:50:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,158 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,584 KB |
実行使用メモリ | 197,428 KB |
最終ジャッジ日時 | 2024-06-30 15:37:48 |
合計ジャッジ時間 | 14,887 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,384 KB |
testcase_01 | AC | 37 ms
52,492 KB |
testcase_02 | AC | 36 ms
53,364 KB |
testcase_03 | AC | 37 ms
52,704 KB |
testcase_04 | WA | - |
testcase_05 | AC | 37 ms
52,588 KB |
testcase_06 | AC | 36 ms
53,836 KB |
testcase_07 | AC | 36 ms
53,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 39 ms
52,596 KB |
testcase_10 | WA | - |
testcase_11 | AC | 37 ms
53,056 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 58 ms
72,792 KB |
testcase_15 | AC | 58 ms
71,752 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 60 ms
72,644 KB |
testcase_20 | AC | 59 ms
72,652 KB |
testcase_21 | WA | - |
testcase_22 | AC | 59 ms
73,096 KB |
testcase_23 | AC | 60 ms
73,524 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 409 ms
197,428 KB |
testcase_35 | AC | 384 ms
196,372 KB |
testcase_36 | AC | 392 ms
196,268 KB |
testcase_37 | AC | 398 ms
196,620 KB |
testcase_38 | AC | 383 ms
197,400 KB |
testcase_39 | AC | 383 ms
196,400 KB |
testcase_40 | AC | 407 ms
196,648 KB |
testcase_41 | AC | 417 ms
197,048 KB |
testcase_42 | AC | 385 ms
196,892 KB |
testcase_43 | AC | 405 ms
196,672 KB |
testcase_44 | AC | 37 ms
52,648 KB |
testcase_45 | AC | 37 ms
53,264 KB |
testcase_46 | AC | 348 ms
178,704 KB |
testcase_47 | AC | 378 ms
180,180 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
ソースコード
N = int(input()) *A, = map(int, input().split()) *X, = map(int, input().split()) *Y, = map(int, input().split()) N0 = 2**(N-1).bit_length() data = [None]*(2*N0+1) # Li Chao Tree def f(line, x): p, q = line return p*x + q def _add_line(line, k, l, r): m = (l + r) // 2 if data[k] is None: data[k] = line return lx = A[l] mx = A[m] rx = A[r-1] left = (f(line, lx) < f(data[k], lx)) mid = (f(line, mx) < f(data[k], mx)) right = (f(line, rx) < f(data[k], rx)) if left and right: data[k] = line return if not left and not right: return if mid: data[k], line = line, data[k] if left != mid: _add_line(line, 2*k+1, l, m) else: _add_line(line, 2*k+2, m, r) def add_line(line): return _add_line(line, 0, 0, N) def query(k, x): def gen(k, x): k += N0-1 while k >= 0: if data[k]: yield f(data[k], x) k = (k - 1) // 2 return min(gen(k, x)) v = 0 for i in range(N): x = X[i]; a = A[i]; y = Y[i] add_line((-2*x, x**2 + y**2 + v)) v = query(i, a) + a**2 print(v)