結果

問題 No.1014 competitive fighting
ユーザー mkawa2mkawa2
提出日時 2020-03-24 12:06:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 3,039 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 79,212 KB
最終ジャッジ日時 2024-12-31 14:35:17
合計ジャッジ時間 56,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
16,384 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 32 ms
11,136 KB
testcase_03 AC 32 ms
11,136 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,202 ms
38,272 KB
testcase_12 TLE -
testcase_13 AC 1,048 ms
23,424 KB
testcase_14 AC 970 ms
22,528 KB
testcase_15 AC 1,176 ms
24,576 KB
testcase_16 AC 64 ms
11,520 KB
testcase_17 AC 396 ms
16,000 KB
testcase_18 AC 1,914 ms
32,700 KB
testcase_19 TLE -
testcase_20 AC 761 ms
20,352 KB
testcase_21 AC 1,868 ms
30,920 KB
testcase_22 AC 1,344 ms
26,752 KB
testcase_23 AC 513 ms
17,408 KB
testcase_24 AC 530 ms
17,664 KB
testcase_25 AC 132 ms
12,544 KB
testcase_26 AC 1,702 ms
30,672 KB
testcase_27 AC 389 ms
16,000 KB
testcase_28 AC 435 ms
16,512 KB
testcase_29 AC 45 ms
11,264 KB
testcase_30 TLE -
testcase_31 AC 1,778 ms
31,436 KB
testcase_32 AC 41 ms
11,136 KB
testcase_33 AC 94 ms
12,544 KB
testcase_34 AC 988 ms
31,568 KB
testcase_35 AC 1,308 ms
37,376 KB
testcase_36 AC 898 ms
29,736 KB
testcase_37 AC 57 ms
11,776 KB
testcase_38 AC 795 ms
27,328 KB
testcase_39 AC 398 ms
19,456 KB
testcase_40 AC 777 ms
27,160 KB
testcase_41 AC 545 ms
22,656 KB
testcase_42 AC 1,269 ms
36,696 KB
testcase_43 AC 84 ms
12,288 KB
testcase_44 AC 1,143 ms
34,400 KB
testcase_45 AC 660 ms
24,784 KB
testcase_46 AC 127 ms
13,312 KB
testcase_47 AC 370 ms
18,816 KB
testcase_48 AC 938 ms
30,584 KB
testcase_49 AC 60 ms
11,648 KB
testcase_50 AC 1,197 ms
35,528 KB
testcase_51 AC 680 ms
25,216 KB
testcase_52 AC 64 ms
12,032 KB
testcase_53 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_right
from heapq import *

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

class SegtreeMax():
    def __init__(self, n):
        self.inf = 10 ** 16
        tree_width = 2
        while tree_width < n:
            tree_width *= 2
        self.tree_width = tree_width
        self.tree = [0] * (tree_width * 2 - 1)

    def update(self, i, a):
        seg_i = self.tree_width - 1 + i
        self.tree[seg_i] = a
        while seg_i != 0:
            seg_i = (seg_i - 1) // 2
            self.tree[seg_i] = max(self.tree[seg_i * 2 + 1], self.tree[seg_i * 2 + 2])

    def element(self, i):
        return self.tree[self.tree_width - 1 + i]

    def max(self, l, r, seg_i=0, segL=0, segR=-1):
        if segR == -1: segR = self.tree_width
        if r <= segL or segR <= l: return 0
        if l <= segL and segR <= r: return self.tree[seg_i]
        segM = (segL + segR) // 2
        ret0 = self.max(l, r, seg_i * 2 + 1, segL, segM)
        ret1 = self.max(l, r, seg_i * 2 + 2, segM, segR)
        return max(ret0, ret1)

def main():
    inf=10**15
    n=II()
    abci=[]
    for i in range(n):
        a,b,c=MI()
        abci.append((a,b,c,i))
    # aの小さいほうから見ていく
    # b-cが自分のaより小さければ、遷移先が出そろっているということなので
    # 遷移先の最大スコアにbを足して自分のスコアにする
    # スコアはセグメント木に入れておく
    # b-cがa以上であれば、b-c以下のaが出揃うまでhpに入れて保留する
    # 保留中はスコアをinfとしてセグメント木にいれておく
    # 保留中に自分への遷移があったときは、ループができるから
    abci.sort()
    ans=[0]*n
    st=SegtreeMax(n)
    hp=[]
    for j,(a,b,c,i) in enumerate(abci):
        # 保留中から出せるものを処理
        while hp and hp[0][0]<a:
            _,pb,pj=heappop(hp)
            st.update(pj,0)
            mx=st.max(0,j)
            if mx!=inf:mx+=pb
            st.update(pj,mx)
            ans[abci[pj][3]]=mx
        # すぐに処理できるもの
        if b-c<a:
            k=bisect_right(abci,(b-c,inf,0,0))
            mx=st.max(0,k)
            if mx!=inf:mx+=b
            st.update(j,mx)
            ans[i]=mx
        # 保留するもの
        else:
            st.update(j,inf)
            heappush(hp,(b-c,b,j))
    # 最後まで保留されたものの処理
    while hp:
        _, pb, pj = heappop(hp)
        st.update(pj,0)
        mx=st.max(0,n)
        if mx!=inf:mx+=pb
        st.update(pj,mx)
        ans[abci[pj][3]]=mx
    # 答えの出力
    for x in ans:
        if x==inf:print("BAN")
        else:print(x)

main()
0