結果

問題 No.703 ゴミ拾い Easy
ユーザー satama6satama6
提出日時 2023-02-12 12:23:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,026 ms / 1,500 ms
コード長 2,677 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 169,332 KB
最終ジャッジ日時 2024-07-16 04:40:24
合計ジャッジ時間 16,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,932 KB
testcase_01 AC 36 ms
52,196 KB
testcase_02 AC 35 ms
53,468 KB
testcase_03 AC 36 ms
52,600 KB
testcase_04 AC 39 ms
53,572 KB
testcase_05 AC 37 ms
53,116 KB
testcase_06 AC 36 ms
52,800 KB
testcase_07 AC 37 ms
53,872 KB
testcase_08 AC 40 ms
52,600 KB
testcase_09 AC 36 ms
53,424 KB
testcase_10 AC 38 ms
53,300 KB
testcase_11 AC 39 ms
53,096 KB
testcase_12 AC 40 ms
52,140 KB
testcase_13 AC 38 ms
52,832 KB
testcase_14 AC 101 ms
76,112 KB
testcase_15 AC 77 ms
76,080 KB
testcase_16 AC 86 ms
76,136 KB
testcase_17 AC 84 ms
76,304 KB
testcase_18 AC 101 ms
77,164 KB
testcase_19 AC 85 ms
76,576 KB
testcase_20 AC 100 ms
75,956 KB
testcase_21 AC 102 ms
76,400 KB
testcase_22 AC 99 ms
76,440 KB
testcase_23 AC 93 ms
75,828 KB
testcase_24 AC 789 ms
164,872 KB
testcase_25 AC 926 ms
164,744 KB
testcase_26 AC 983 ms
166,576 KB
testcase_27 AC 590 ms
163,944 KB
testcase_28 AC 587 ms
166,264 KB
testcase_29 AC 570 ms
164,200 KB
testcase_30 AC 651 ms
165,060 KB
testcase_31 AC 578 ms
166,416 KB
testcase_32 AC 750 ms
166,388 KB
testcase_33 AC 1,026 ms
166,588 KB
testcase_34 AC 343 ms
168,356 KB
testcase_35 AC 338 ms
168,996 KB
testcase_36 AC 373 ms
168,528 KB
testcase_37 AC 347 ms
169,332 KB
testcase_38 AC 364 ms
169,064 KB
testcase_39 AC 368 ms
168,540 KB
testcase_40 AC 340 ms
169,200 KB
testcase_41 AC 342 ms
168,376 KB
testcase_42 AC 339 ms
168,708 KB
testcase_43 AC 335 ms
169,104 KB
testcase_44 AC 38 ms
52,988 KB
testcase_45 AC 38 ms
53,932 KB
testcase_46 AC 324 ms
167,376 KB
testcase_47 AC 377 ms
167,004 KB
testcase_48 AC 78 ms
76,256 KB
testcase_49 AC 96 ms
76,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class LiChaoTree:
    def __init__(self, M, A) -> None:
        """
        最小値クエリで聞かれる{x1, ..., xn}が既知の時(クエリ先読み)

        """
        self.M = M # クエリ数
        l = 1
        while l < M:
            l <<= 1
        self.length = l
        self.sg = [None] * (2 * l)  # (a, b)直線
        self.X = [1 << 60] * l
        self.update_X(A)
    
    def update_X(self, A):
        self.X = A + [1 << 60] * (self.length - self.M)

    def get_value(self, line, x):
        """座標xにおける直線lineの値
        """
        return line[0] * x + line[1]
    
    def _add_line(self, line, k, l, r):
        """トップダウンに更新
        右、左、真ん中を比較して、lineが必要か不要かを判定
        Parameter
        -----------
        k: 現在処理している区間に対応するセグ木上のインデックス
        l: 現在処理している区間に対応する座標の左端
        r: 現在処理している区間に対応する座標の右端
        """

        if self.sg[k] is None : self.sg[k] = line; return

        m = (l + r) // 2
        lx, mx, rx = self.X[l], self.X[m], self.X[r-1]
        left = self.get_value(line, lx) < self.get_value(self.sg[k], lx)  # 左端
        middle = self.get_value(line, mx) < self.get_value(self.sg[k], mx)  # 真ん中
        right = self.get_value(line, rx) < self.get_value(self.sg[k], rx)  # 右端
        
        # 元々の直線よりもlineの方が値が小さい
        if left and right:self.sg[k] = line; return
        # 元々の直線の方がlineよりも値が小さい
        elif not (left or right) : return
        
        # 元々の直線とlineが交わっている、かつ真ん中でlineの方が小さい
        if middle : self.sg[k], line = line, self.sg[k]

        # 左側をlineに更新しなければならない
        if left != middle : self._add_line(line, 2*k, l, m)
        # 右側をlineに更新しなければならない
        else : self._add_line(line, 2*k+1, m, r)
    
    def add_line(self, line):
        self._add_line(line, 1, 0, self.length)
    
    def gen(self, k, x):
        k += self.length
        while k > 0:
            if self.sg[k] is not None : yield self.get_value(self.sg[k], x)
            k >>= 1

    def query(self, k, x):
        return min(self.gen(k, x))


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

v = 0
for i in range(N):
    lichao.add_line((-2*X[i], X[i]**2 + Y[i]**2 + v))
    v = lichao.query(i, A[i]) + A[i]**2

print(v)
0