結果

問題 No.59 鉄道の旅
ユーザー titiatitia
提出日時 2021-12-17 04:49:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 653 ms / 5,000 ms
コード長 875 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,332 KB
最終ジャッジ日時 2024-09-14 04:56:24
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
18,324 KB
testcase_01 AC 44 ms
18,312 KB
testcase_02 AC 43 ms
18,548 KB
testcase_03 AC 44 ms
18,456 KB
testcase_04 AC 595 ms
22,088 KB
testcase_05 AC 45 ms
18,448 KB
testcase_06 AC 44 ms
18,336 KB
testcase_07 AC 43 ms
18,328 KB
testcase_08 AC 97 ms
18,756 KB
testcase_09 AC 102 ms
18,724 KB
testcase_10 AC 104 ms
18,652 KB
testcase_11 AC 70 ms
18,520 KB
testcase_12 AC 282 ms
19,408 KB
testcase_13 AC 653 ms
22,208 KB
testcase_14 AC 607 ms
22,332 KB
testcase_15 AC 44 ms
18,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
W=[int(input()) for i in range(N)]

LEN=10**6+10

BIT=[0]*(LEN+1) # 1-indexedなtree. 配列BITの長さはLEN+1にしていることに注意。

def update(v,w): # index vにwを加える
    while v<=LEN:
        BIT[v]+=w
        v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4

def getvalue(v): # [1,v]の区間の和を求める
    ANS=0
    while v!=0:
        ANS+=BIT[v]
        v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ
    return ANS

S=0
for w in W:
    if w>0:
        x=getvalue(w-1)

        if S-x>=K:
            True
        else:
            S+=1
            update(w,1)
    else:
        w=-w
        if getvalue(w)>getvalue(w-1):
            update(w,-1)
            S-=1

print(S)
    
0