結果

問題 No.59 鉄道の旅
ユーザー TawaraTawara
提出日時 2015-12-30 17:30:54
言語 Python2
(2.7.18)
結果
AC  
実行時間 828 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-06-07 02:02:47
合計ジャッジ時間 4,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
22,016 KB
testcase_01 AC 36 ms
21,760 KB
testcase_02 AC 41 ms
21,888 KB
testcase_03 AC 37 ms
22,008 KB
testcase_04 AC 671 ms
22,016 KB
testcase_05 AC 37 ms
21,888 KB
testcase_06 AC 38 ms
21,760 KB
testcase_07 AC 39 ms
21,888 KB
testcase_08 AC 119 ms
21,888 KB
testcase_09 AC 104 ms
21,888 KB
testcase_10 AC 111 ms
21,760 KB
testcase_11 AC 93 ms
21,888 KB
testcase_12 AC 608 ms
21,992 KB
testcase_13 AC 722 ms
22,016 KB
testcase_14 AC 828 ms
21,760 KB
testcase_15 AC 37 ms
21,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,raw_input().split())
bitN=10**6;bit=[0]*(bitN+1);cnt=[0]*(bitN+1)
def bit_add(a,w):
	while a<=bitN:bit[a]+=w;a+=a&(-a)
def bit_sum(a):
	ret=0
	while a>0:ret+=bit[a];a-=a&(-a)
	return ret
for i in xrange(N):
	w=input()
	if w > 0:
		if bit_sum(bitN-w+1)<K:bit_add(bitN-w+1,1);cnt[w]+=1
	else:
		if cnt[-w]>0:bit_add(bitN+w+1,-1);cnt[-w]-=1
print bit_sum(bitN)
0