結果

問題 No.1014 competitive fighting
ユーザー mkawa2mkawa2
提出日時 2020-03-23 23:57:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 2,217 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 121,216 KB
最終ジャッジ日時 2024-06-09 10:18:34
合計ジャッジ時間 33,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 28 ms
11,136 KB
testcase_05 AC 1,353 ms
89,208 KB
testcase_06 AC 1,339 ms
89,208 KB
testcase_07 AC 1,364 ms
89,208 KB
testcase_08 AC 1,345 ms
89,200 KB
testcase_09 AC 1,347 ms
89,336 KB
testcase_10 TLE -
testcase_11 AC 480 ms
71,424 KB
testcase_12 AC 1,352 ms
89,336 KB
testcase_13 AC 615 ms
47,848 KB
testcase_14 AC 575 ms
45,396 KB
testcase_15 AC 668 ms
50,172 KB
testcase_16 AC 48 ms
12,416 KB
testcase_17 AC 233 ms
25,856 KB
testcase_18 AC 1,110 ms
77,952 KB
testcase_19 AC 1,294 ms
87,512 KB
testcase_20 AC 534 ms
39,936 KB
testcase_21 AC 1,131 ms
73,676 KB
testcase_22 AC 761 ms
55,152 KB
testcase_23 AC 292 ms
29,056 KB
testcase_24 AC 305 ms
29,568 KB
testcase_25 AC 85 ms
15,104 KB
testcase_26 AC 975 ms
72,652 KB
testcase_27 AC 230 ms
25,856 KB
testcase_28 AC 253 ms
27,264 KB
testcase_29 AC 34 ms
11,264 KB
testcase_30 AC 1,319 ms
87,144 KB
testcase_31 AC 1,024 ms
75,036 KB
testcase_32 AC 35 ms
11,392 KB
testcase_33 AC 59 ms
14,464 KB
testcase_34 AC 483 ms
60,228 KB
testcase_35 WA -
testcase_36 AC 415 ms
57,468 KB
testcase_37 AC 39 ms
12,416 KB
testcase_38 WA -
testcase_39 AC 202 ms
28,288 KB
testcase_40 AC 348 ms
44,980 KB
testcase_41 AC 252 ms
37,504 KB
testcase_42 AC 569 ms
68,544 KB
testcase_43 AC 51 ms
14,208 KB
testcase_44 AC 541 ms
65,072 KB
testcase_45 WA -
testcase_46 AC 72 ms
16,768 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 43 ms
12,544 KB
testcase_50 AC 535 ms
66,596 KB
testcase_51 AC 313 ms
42,052 KB
testcase_52 AC 44 ms
12,800 KB
testcase_53 AC 1,369 ms
88,952 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