結果

問題 No.59 鉄道の旅
ユーザー TawaraTawara
提出日時 2015-12-30 18:54:50
言語 Python2
(2.7.18)
結果
AC  
実行時間 833 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 22,048 KB
最終ジャッジ日時 2024-06-07 02:03:57
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
21,888 KB
testcase_01 AC 39 ms
21,912 KB
testcase_02 AC 37 ms
21,988 KB
testcase_03 AC 39 ms
21,840 KB
testcase_04 AC 700 ms
21,996 KB
testcase_05 AC 39 ms
22,016 KB
testcase_06 AC 41 ms
22,048 KB
testcase_07 AC 40 ms
21,888 KB
testcase_08 AC 125 ms
21,888 KB
testcase_09 AC 107 ms
21,880 KB
testcase_10 AC 118 ms
22,016 KB
testcase_11 AC 101 ms
21,888 KB
testcase_12 AC 620 ms
21,992 KB
testcase_13 AC 742 ms
21,984 KB
testcase_14 AC 833 ms
21,944 KB
testcase_15 AC 38 ms
21,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,raw_input().split());M=10**6+1;B=[0]*M;C=[0]*M
def A(a,w):
	while a<M:B[a]+=w;a+=a&(-a)
def S(a):
	r=0
	while a>0:r+=B[a];a-=a&(-a)
	return r
while N:
	N-=1;w=input()
	if w>0:
		if S(M-w)<K:A(M-w,1);C[w]+=1
	else:
		if C[-w]>0:A(M+w,-1);C[-w]-=1
print S(M-1)
0