結果
問題 | No.704 ゴミ拾い Medium |
ユーザー | tjake |
提出日時 | 2018-06-16 00:11:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,440 bytes |
コンパイル時間 | 463 ms |
コンパイル使用メモリ | 82,700 KB |
実行使用メモリ | 190,608 KB |
最終ジャッジ日時 | 2024-06-30 15:43:43 |
合計ジャッジ時間 | 6,394 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,600 KB |
testcase_01 | AC | 38 ms
52,224 KB |
testcase_02 | AC | 40 ms
51,968 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 40 ms
51,968 KB |
testcase_05 | AC | 40 ms
52,224 KB |
testcase_06 | WA | - |
testcase_07 | AC | 38 ms
52,224 KB |
testcase_08 | AC | 39 ms
51,968 KB |
testcase_09 | AC | 38 ms
52,480 KB |
testcase_10 | AC | 40 ms
52,864 KB |
testcase_11 | AC | 39 ms
52,608 KB |
testcase_12 | AC | 39 ms
52,352 KB |
testcase_13 | AC | 39 ms
52,864 KB |
testcase_14 | AC | 112 ms
76,700 KB |
testcase_15 | AC | 116 ms
76,672 KB |
testcase_16 | AC | 100 ms
76,160 KB |
testcase_17 | AC | 115 ms
76,800 KB |
testcase_18 | AC | 129 ms
76,928 KB |
testcase_19 | AC | 111 ms
76,496 KB |
testcase_20 | AC | 115 ms
76,536 KB |
testcase_21 | AC | 102 ms
76,552 KB |
testcase_22 | AC | 96 ms
76,312 KB |
testcase_23 | AC | 108 ms
76,800 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
N = int(input()) *A, = map(int, input().split()) *X, = map(int, input().split()) *Y, = map(int, input().split()) N0 = 2**(N-1).bit_length() A = A + [10**6] * (N0 - N) data = [None]*(2*N0+1) # Li Chao Tree def f(line, x): p, q = line return p*x + q def _add_line(line, a, b, k, l, r): if r <= a or b <= l: return m = (l + r) // 2 if not (a <= l and r <= b): _add_line(line, a, b, 2*k+1, l, m) _add_line(line, a, b, 2*k+2, m, r) return 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, a, b): return _add_line(line, a, b, 0, 0, N0) 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 j = 0 for i in range(N): x = X[i]; a = A[i]; y = Y[i] while A[j+1] < x: j += 1 add_line((-1, x+y+v), 0, j) add_line((1, -x+y+v), j, N0) v = query(i, a) print(v)