結果

問題 No.1014 competitive fighting
ユーザー mkawa2mkawa2
提出日時 2020-03-24 11:13:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,255 ms / 2,000 ms
コード長 2,174 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 147,288 KB
最終ジャッジ日時 2024-06-10 05:42:56
合計ジャッジ時間 28,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 38 ms
53,088 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 37 ms
53,632 KB
testcase_04 AC 38 ms
53,376 KB
testcase_05 AC 993 ms
133,432 KB
testcase_06 AC 972 ms
133,376 KB
testcase_07 AC 1,015 ms
132,736 KB
testcase_08 AC 910 ms
131,024 KB
testcase_09 AC 961 ms
132,336 KB
testcase_10 AC 1,255 ms
147,288 KB
testcase_11 AC 204 ms
115,600 KB
testcase_12 AC 1,003 ms
132,736 KB
testcase_13 AC 546 ms
104,320 KB
testcase_14 AC 493 ms
101,600 KB
testcase_15 AC 604 ms
106,792 KB
testcase_16 AC 182 ms
79,488 KB
testcase_17 AC 324 ms
88,624 KB
testcase_18 AC 822 ms
126,208 KB
testcase_19 AC 945 ms
131,820 KB
testcase_20 AC 475 ms
98,736 KB
testcase_21 AC 787 ms
122,368 KB
testcase_22 AC 660 ms
109,584 KB
testcase_23 AC 359 ms
91,056 KB
testcase_24 AC 331 ms
90,640 KB
testcase_25 AC 191 ms
80,348 KB
testcase_26 AC 723 ms
122,368 KB
testcase_27 AC 296 ms
88,448 KB
testcase_28 AC 312 ms
89,280 KB
testcase_29 AC 113 ms
77,568 KB
testcase_30 AC 894 ms
130,748 KB
testcase_31 AC 784 ms
124,160 KB
testcase_32 AC 101 ms
76,672 KB
testcase_33 AC 105 ms
78,836 KB
testcase_34 AC 429 ms
111,488 KB
testcase_35 AC 558 ms
116,748 KB
testcase_36 AC 333 ms
108,836 KB
testcase_37 AC 98 ms
78,068 KB
testcase_38 AC 344 ms
101,012 KB
testcase_39 AC 281 ms
89,440 KB
testcase_40 AC 303 ms
99,456 KB
testcase_41 AC 237 ms
95,532 KB
testcase_42 AC 417 ms
115,968 KB
testcase_43 AC 91 ms
78,356 KB
testcase_44 AC 430 ms
113,536 KB
testcase_45 AC 343 ms
97,892 KB
testcase_46 AC 98 ms
80,512 KB
testcase_47 AC 229 ms
88,500 KB
testcase_48 AC 473 ms
111,360 KB
testcase_49 AC 96 ms
78,080 KB
testcase_50 AC 407 ms
113,920 KB
testcase_51 AC 240 ms
96,896 KB
testcase_52 AC 86 ms
77,460 KB
testcase_53 AC 979 ms
132,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from heapq import *
import sys

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]

def main():
    def connect(j,l,r,sl=0,sr=-1,si=0):
        if l>=r:return
        if sr==-1:sr=w
        if r<=sl or sr<=l:return
        if l<=sl and sr<=r:
            to[j+w-1].append(si)
            return
        sm=(sl+sr)//2
        connect(j,l,r,sl,sm,si*2+1)
        connect(j,l,r,sm,sr,si*2+2)

    def dfs(u):
        vis[u]=0
        for v in to[u]:
            if vis[v]==0:
                dp[u]=inf
                break
            if vis[v]==-1:
                dfs(v)
            if dp[v]==inf:
                dp[u]=inf
                break
            dp[u]=max(dp[u],dp[v])
        if u>=w-1:
            _,b,_,i=abci[u-w+1]
            if dp[u]!=inf:dp[u]+=b
            ans[i]=dp[u]
        vis[u] = 1

    inf=10**15
    n=II()
    abci=[]
    w=1<<(n-1).bit_length()
    to=[[] for _ in range(w-1+n)]
    for i in range(w-2+n,0,-1):to[(i-1)//2].append(i)
    for i in range(n):
        a,b,c=MI()
        abci.append((a,b,c,i))
    # aの小さい順に見ていってセグメント木に辺を張る
    abci.sort()
    aa=[]
    hp=[]
    for j,(a,b,c,i) in enumerate(abci):
        while hp and hp[0][0]<a:
            _,pj=heappop(hp)
            connect(pj,0,pj)
            connect(pj,pj+1,j)
        if b-c<a:
            k=bisect_right(aa,b-c)
            connect(j,0,k)
        else:
            heappush(hp,(b-c,j))
        aa.append(a)
    while hp:
        _, pj = heappop(hp)
        connect(pj, 0, pj)
        connect(pj, pj + 1, n)
    # dfsで最大スコアを求める
    dp=[0]*(2*w-1)
    vis=[-1]*(2*w-1)
    ans=[0]*n
    for u in range(w-1,w-1+n):
        if vis[u]!=-1:continue
        dfs(u)
    # 答えの出力
    for x in ans:
        if x==inf:print("BAN")
        else:print(x)

main()
0