結果

問題 No.1014 competitive fighting
ユーザー mkawa2mkawa2
提出日時 2020-03-23 23:57:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 2,217 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 207,484 KB
最終ジャッジ日時 2024-12-29 17:32:58
合計ジャッジ時間 44,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
16,384 KB
testcase_01 AC 36 ms
11,008 KB
testcase_02 AC 35 ms
11,008 KB
testcase_03 AC 36 ms
10,880 KB
testcase_04 AC 36 ms
10,880 KB
testcase_05 AC 1,723 ms
89,084 KB
testcase_06 AC 1,739 ms
89,212 KB
testcase_07 AC 1,725 ms
89,208 KB
testcase_08 AC 1,718 ms
89,100 KB
testcase_09 AC 1,696 ms
89,332 KB
testcase_10 TLE -
testcase_11 AC 597 ms
71,168 KB
testcase_12 AC 1,724 ms
89,336 KB
testcase_13 AC 747 ms
47,844 KB
testcase_14 AC 693 ms
45,524 KB
testcase_15 AC 822 ms
50,424 KB
testcase_16 AC 59 ms
12,544 KB
testcase_17 AC 289 ms
26,112 KB
testcase_18 AC 1,371 ms
77,956 KB
testcase_19 AC 1,677 ms
87,632 KB
testcase_20 AC 554 ms
39,936 KB
testcase_21 AC 1,273 ms
73,812 KB
testcase_22 AC 984 ms
55,280 KB
testcase_23 AC 371 ms
29,184 KB
testcase_24 AC 390 ms
29,696 KB
testcase_25 AC 110 ms
15,232 KB
testcase_26 AC 1,253 ms
72,656 KB
testcase_27 AC 292 ms
25,856 KB
testcase_28 AC 333 ms
27,264 KB
testcase_29 AC 45 ms
11,520 KB
testcase_30 AC 1,680 ms
87,396 KB
testcase_31 AC 1,315 ms
74,784 KB
testcase_32 AC 41 ms
11,392 KB
testcase_33 AC 71 ms
14,592 KB
testcase_34 AC 633 ms
60,232 KB
testcase_35 WA -
testcase_36 AC 544 ms
57,596 KB
testcase_37 AC 50 ms
12,544 KB
testcase_38 WA -
testcase_39 AC 269 ms
28,288 KB
testcase_40 AC 478 ms
45,108 KB
testcase_41 AC 327 ms
37,760 KB
testcase_42 AC 728 ms
68,536 KB
testcase_43 AC 68 ms
14,208 KB
testcase_44 AC 702 ms
65,068 KB
testcase_45 WA -
testcase_46 AC 92 ms
17,024 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 56 ms
12,672 KB
testcase_50 AC 722 ms
66,716 KB
testcase_51 AC 400 ms
42,180 KB
testcase_52 AC 55 ms
12,672 KB
testcase_53 AC 1,728 ms
207,484 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 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,start=-1):
        if start==-1:start=u
        for v in to[u]:
            if vis[v]==start:
                dp[u]=inf
                break
            if vis[v]==-1:
                vis[v]=start
                dfs(v,start)
            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]

    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 j in range(n):
        u=j+w-1
        if vis[u]!=-1:continue
        vis[u]=u
        dfs(u)
    # 答えの出力
    for x in ans:
        if x==inf:print("BAN")
        else:print(x)

main()
0