結果

問題 No.2859 Falling Balls
ユーザー mkawa2mkawa2
提出日時 2024-08-27 09:02:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 3,000 ms
コード長 1,806 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 198,796 KB
最終ジャッジ日時 2024-08-27 09:02:28
合計ジャッジ時間 12,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
55,120 KB
testcase_01 AC 34 ms
54,416 KB
testcase_02 AC 33 ms
54,256 KB
testcase_03 AC 33 ms
55,432 KB
testcase_04 AC 34 ms
54,456 KB
testcase_05 AC 33 ms
55,200 KB
testcase_06 AC 34 ms
54,692 KB
testcase_07 AC 33 ms
55,488 KB
testcase_08 AC 33 ms
55,608 KB
testcase_09 AC 34 ms
54,012 KB
testcase_10 AC 174 ms
104,328 KB
testcase_11 AC 558 ms
195,112 KB
testcase_12 AC 75 ms
78,016 KB
testcase_13 AC 512 ms
189,712 KB
testcase_14 AC 389 ms
150,080 KB
testcase_15 AC 163 ms
104,184 KB
testcase_16 AC 214 ms
124,340 KB
testcase_17 AC 208 ms
120,004 KB
testcase_18 AC 71 ms
77,296 KB
testcase_19 AC 294 ms
151,900 KB
testcase_20 AC 525 ms
198,796 KB
testcase_21 AC 505 ms
198,388 KB
testcase_22 AC 536 ms
198,256 KB
testcase_23 AC 516 ms
197,820 KB
testcase_24 AC 537 ms
198,308 KB
testcase_25 AC 524 ms
198,168 KB
testcase_26 AC 512 ms
198,228 KB
testcase_27 AC 530 ms
197,200 KB
testcase_28 AC 520 ms
198,464 KB
testcase_29 AC 539 ms
198,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(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-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

class Bit:
    def __init__(self, op, e, n):
        self.op = op
        self.e = e
        self.n = n+1
        self.table = [e() for _ in range(self.n)]

    def update(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] = self.op(self.table[i], x)
            i += i & -i

    # [0,i]
    def prod(self, i):
        i += 1
        res = self.e()
        while i > 0:
            res = self.op(res,self.table[i])
            i -= i & -i
        return res

from collections import defaultdict

# left
# u-u1<=(t-t1)*k
# u-u1<=kt-kt1
# kt1-u1<=kt-u

# right
# u1-u<=(t-t1)*k
# u1-u<=kt-kt1
# kt1+u1<=kt+u

n,k=LI()
tt=LI()
xx=LI()
cc=LI()

enc=set()
for t,x in zip(tt,xx):enc.add(k*t+x)
enc.add(0)
enc={a:i for i,a in enumerate(sorted(enc))}
m=len(enc)
bit=Bit(max,lambda :-inf,m+5)
bit.update(enc[0],0)

for i in sorted(range(n),key=lambda i:k*tt[i]-xx[i]):
    t,x=tt[i],xx[i]
    if k*t-x<0:continue
    p=enc[k*t+x]
    mx=bit.prod(p)
    if mx==-inf:continue
    bit.update(p,mx+cc[i])

print(bit.prod(m))
0