結果
問題 |
No.844 split game
|
ユーザー |
![]() |
提出日時 | 2020-07-15 23:08:51 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,350 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 93,440 KB |
最終ジャッジ日時 | 2024-11-22 15:54:48 |
合計ジャッジ時間 | 18,437 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 14 WA * 42 |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") def getlist(): return list(map(int, input().split())) class SegmentTree(object): #N:処理する区間の長さ def __init__(self, N): self.N0 = 2 ** (N - 1).bit_length() self.data = [0] * (2 * self.N0) #k番目の値をxに更新 def update(self, k, x): k += self.N0 - 1 self.data[k] = x while k > 0: k = (k - 1) // 2 self.data[k] = max(self.data[2 * k + 1], self.data[2 * k + 2]) #区間[l, r]の最大値 def query(self, l, r): L = l + self.N0; R = r + self.N0 + 1 m = 0 while L < R: if R & 1: R -= 1 m = max(m, self.data[R - 1]) if L & 1: m = max(m, self.data[L - 1]) L += 1 L >>= 1; R >>= 1 return m #処理内容 def main(): N, M, A = getlist() line = [] for i in range(M): l, r, p = getlist() line.append([r, l, p]) line.sort() # セグ木でDP Seg = SegmentTree(N + 2) for i in range(M): r, l, p = line[i] if r != N: newScore = max(Seg.query(0, l - 1) - 2 * A + p, Seg.query(l - 1, l - 1) - A + p, Seg.query(r, r)) else: newScore = max(Seg.query(0, l - 1) - A + p, Seg.query(l - 1, l - 1) + p, Seg.query(r, r)) Seg.update(r, newScore) ans = max(Seg.data) print(ans) if __name__ == '__main__': main()