結果
問題 | No.2957 Combo Deck Builder |
ユーザー | shotoyoo |
提出日時 | 2024-11-08 22:31:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,285 bytes |
コンパイル時間 | 603 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 115,468 KB |
最終ジャッジ日時 | 2024-11-08 22:31:53 |
合計ジャッジ時間 | 22,253 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
54,656 KB |
testcase_01 | AC | 51 ms
54,784 KB |
testcase_02 | AC | 48 ms
54,912 KB |
testcase_03 | WA | - |
testcase_04 | AC | 49 ms
54,784 KB |
testcase_05 | AC | 48 ms
54,912 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 649 ms
111,360 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 676 ms
112,228 KB |
testcase_13 | AC | 653 ms
110,900 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 722 ms
110,172 KB |
testcase_28 | WA | - |
testcase_29 | AC | 749 ms
110,568 KB |
testcase_30 | WA | - |
testcase_31 | AC | 251 ms
108,984 KB |
testcase_32 | AC | 383 ms
115,468 KB |
testcase_33 | AC | 414 ms
111,964 KB |
testcase_34 | AC | 640 ms
109,828 KB |
testcase_35 | AC | 614 ms
110,212 KB |
testcase_36 | WA | - |
testcase_37 | AC | 47 ms
54,784 KB |
testcase_38 | AC | 49 ms
54,656 KB |
testcase_39 | AC | 49 ms
54,912 KB |
ソースコード
import sys, random input = lambda : sys.stdin.readline().rstrip() write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x)) debug = lambda x: sys.stderr.write(x+"\n") YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18 LI = lambda v=0: list(map(lambda i: int(i)-v, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()] def debug(_l_): for s in _l_.split(): print(f"{s}={eval(s)}", end=" ") print() def dlist(*l, fill=0): if len(l)==1: return [fill]*l[0] ll = l[1:] return [dlist(*ll, fill=fill) for _ in range(l[0])] n = II() vs = [[], []] for _ in range(n): c,x,y = LI() if x<y: vs[0].append((c,x,y)) else: vs[1].append((n-c+1,y,x)) def sub(cxy): m = len(cxy) cxy.sort(key=lambda item: -item[0]) # 基本は x, 間に合えば y h = [] from heapq import heappop as hpp, heappush as hp i = 0 res = 0 for d in range(1,m+1)[::-1]: while i<m and cxy[i][0]>=d: c,x,y = cxy[i] hp(h, -(y-x)) i += 1 if h: res += -hpp(h) res += sum(item[1] for item in cxy) # print(cxy, res) return res ans = sub(vs[0]) + sub(vs[1]) print(ans)