結果
問題 | No.777 再帰的ケーキ |
ユーザー | 👑 rin204 |
提出日時 | 2022-02-12 22:34:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,820 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 210,048 KB |
最終ジャッジ日時 | 2024-06-29 01:49:08 |
合計ジャッジ時間 | 12,087 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | AC | 40 ms
52,480 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 40 ms
51,968 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 41 ms
52,096 KB |
testcase_12 | AC | 42 ms
52,352 KB |
testcase_13 | AC | 46 ms
51,712 KB |
testcase_14 | WA | - |
testcase_15 | AC | 41 ms
51,840 KB |
testcase_16 | AC | 41 ms
52,224 KB |
testcase_17 | AC | 40 ms
52,224 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 81 ms
71,168 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 84 ms
72,448 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 299 ms
107,520 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
class SegTree(): def __init__(self, n, e, ope, lst=[]): self.N0 = 2 ** (n - 1).bit_length() self.e = e self.ope = ope self.data = [e] * (2 * self.N0) if lst: for i in range(n): self.data[self.N0 + i] = lst[i] for i in range(self.N0 - 1, 0, -1): self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1]) def f5(self): for i in range(self.N0 - 1, 0, -1): self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1]) def update(self, i, x): #a_iの値をxに更新 i += self.N0 self.data[i] = x while i > 1: i >>= 1 self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1]) def add(self, i, x): self.update(i, x + self.get(i)) def query(self, l, r): #区間[l, r)での演算結果 if r <= l: return self.e lres = self.e rres = self.e l += self.N0 r += self.N0 while l < r: if l & 1: lres = self.ope(lres, self.data[l]) l += 1 if r & 1: r -= 1 rres = self.ope(self.data[r], rres) l >>= 1 r >>= 1 return self.ope(lres, rres) def get(self, i): #a_iの値を返す return self.data[self.N0 + i] n = int(input()) abc = [list(map(int, input().split())) for _ in range(n)] abc.sort(key = lambda x:(-x[0], x[1])) se = {0} | {b for _, b, _ in abc} dic = {b:i for i, b in enumerate(se)} l = len(se) seg = SegTree(l, 0, max) for _, b, c in abc: b = dic[b] tmp = seg.query(b + 1, l) + c if tmp > seg.get(b): seg.update(b, tmp) print(seg.query(0, l))