結果

問題 No.704 ゴミ拾い Medium
ユーザー tpynerivertpyneriver
提出日時 2019-07-05 19:51:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 1,500 ms
コード長 2,801 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 187,148 KB
最終ジャッジ日時 2024-09-22 04:42:51
合計ジャッジ時間 16,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,960 KB
testcase_01 AC 36 ms
53,888 KB
testcase_02 AC 36 ms
53,048 KB
testcase_03 AC 66 ms
86,700 KB
testcase_04 AC 37 ms
53,220 KB
testcase_05 AC 37 ms
54,440 KB
testcase_06 AC 37 ms
54,332 KB
testcase_07 AC 36 ms
53,596 KB
testcase_08 AC 36 ms
53,572 KB
testcase_09 AC 36 ms
53,372 KB
testcase_10 AC 36 ms
53,852 KB
testcase_11 AC 37 ms
52,472 KB
testcase_12 AC 37 ms
53,308 KB
testcase_13 AC 37 ms
53,416 KB
testcase_14 AC 128 ms
104,916 KB
testcase_15 AC 122 ms
104,312 KB
testcase_16 AC 125 ms
104,324 KB
testcase_17 AC 126 ms
104,552 KB
testcase_18 AC 125 ms
104,692 KB
testcase_19 AC 122 ms
104,188 KB
testcase_20 AC 124 ms
104,548 KB
testcase_21 AC 123 ms
104,156 KB
testcase_22 AC 125 ms
104,660 KB
testcase_23 AC 125 ms
104,352 KB
testcase_24 AC 692 ms
182,940 KB
testcase_25 AC 731 ms
182,604 KB
testcase_26 AC 715 ms
182,908 KB
testcase_27 AC 622 ms
182,448 KB
testcase_28 AC 723 ms
182,812 KB
testcase_29 AC 691 ms
182,612 KB
testcase_30 AC 719 ms
182,656 KB
testcase_31 AC 716 ms
183,336 KB
testcase_32 AC 613 ms
182,904 KB
testcase_33 AC 720 ms
183,388 KB
testcase_34 AC 388 ms
186,360 KB
testcase_35 AC 392 ms
186,684 KB
testcase_36 AC 392 ms
186,380 KB
testcase_37 AC 395 ms
186,484 KB
testcase_38 AC 391 ms
186,644 KB
testcase_39 AC 388 ms
186,844 KB
testcase_40 AC 397 ms
186,912 KB
testcase_41 AC 386 ms
186,500 KB
testcase_42 AC 405 ms
187,148 KB
testcase_43 AC 391 ms
186,640 KB
testcase_44 AC 36 ms
53,800 KB
testcase_45 AC 69 ms
89,980 KB
testcase_46 AC 435 ms
186,324 KB
testcase_47 AC 567 ms
183,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Lichaotree:
    #区間は1-indexed
    #min
    def __init__(self, X):
        self.N = len(X)
        self.N0 = 2**(self.N-1).bit_length()
        self.comp = {v : k for k, v in enumerate(X)}
        self.inf = 10**12
        self.X = X + [self.inf]*(self.N0 - self.N)
        self.data = [None]*(2*self.N0)
        self.size = [0]*self.N0 + [1]*self.N0
        for i in range(self.N0-1, 0, -1):
            self.size[i] = 2*self.size[2*i]
        self.start = [0]*(2*self.N0)
        for i in range(1, 2*self.N0):
            if i == i&(-i):
                continue
            self.start[i] = self.start[i-1] + self.size[i]
        
    def f(self, line, x):
        return line[0]*x + line[1]

    def _update(self, k, line):
        
        if self.data[k] is None:
            self.data[k] = line
            return
        
        l = self.start[k]
        r = l + self.size[k]        
        
        while True:
            if self.data[k] is None:
                self.data[k] = line
                return
            
            m = (l+r)//2
            lx = self.X[l]
            mx = self.X[m]
            rx = self.X[r-1]
            gl = (self.f(self.data[k], lx) > self.f(line, lx))
            gm = (self.f(self.data[k], mx) > self.f(line, mx))
            gr = (self.f(self.data[k], rx) > self.f(line, rx))
            if gl and gr:
                self.data[k] = line
                return
            
            if not gl and not gr:
                return
            
            if gm:
                self.data[k], line = line, self.data[k]
                gl = not gl
                
            if gl:
                r = m
                k = 2*k
            else:
                l = m
                k = 2*k+1
    
    def query(self, x):
        k = self.comp[x] + self.N0
        s = self.inf
        while k > 0:
            if self.data[k]:
                s = min(s, self.f(self.data[k], x))
            k = k >> 1
        return s
            
    def addline(self, line):
        self._update(1, line)
    
    def addlineseg(self, l, r, line):
        #区間[l, r)にlineを追加,l, rはXの元
        
        L = l+self.N0
        R = r+self.N0
        while L < R:
            if R & 1:
                R -= 1
                self._update(R, line)
            if L & 1:
                self._update(L, line)
                L += 1
            L >>= 1
            R >>= 1

N = int(input())
A = list(map(int, input().split()))
X = list(map(int, input().split()))
Y = list(map(int, input().split()))

mX = max(X+A)
T = Lichaotree(list(range(mX + 1)))
N0 = T.N0
dp = [0]*N
for i in range(N):
    T.addlineseg(0, X[i], (-1, X[i] + Y[i] + dp[i-1]))
    T.addlineseg(X[i], N0, (1, -X[i] + Y[i] + dp[i-1]))
    dp[i] = T.query(A[i])

print(dp[-1])
0