結果

問題 No.59 鉄道の旅
ユーザー gigurururugigurururu
提出日時 2015-04-24 23:35:27
言語 Ruby
(3.4.1)
結果
AC  
実行時間 351 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-12-24 20:37:05
合計ジャッジ時間 3,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
19,840 KB
testcase_01 AC 94 ms
19,968 KB
testcase_02 AC 93 ms
19,968 KB
testcase_03 AC 99 ms
19,968 KB
testcase_04 AC 302 ms
29,568 KB
testcase_05 AC 116 ms
19,968 KB
testcase_06 AC 110 ms
20,096 KB
testcase_07 AC 110 ms
19,968 KB
testcase_08 AC 137 ms
20,736 KB
testcase_09 AC 129 ms
20,480 KB
testcase_10 AC 133 ms
20,480 KB
testcase_11 AC 122 ms
20,480 KB
testcase_12 AC 179 ms
27,776 KB
testcase_13 AC 287 ms
30,592 KB
testcase_14 AC 351 ms
34,432 KB
testcase_15 AC 108 ms
20,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - l
Syntax OK

ソースコード

diff #

BIT=[0]*1000001
def add x,v;(BIT[x]+=v;x+=x&-x)while BIT[x];end
def sum x;s=0;(s+=BIT[x];x&=x-1)while x>0;s;end
l=[]
_,k,*t=$<.read.split.map &:to_i
cnt=Hash.new{0}
all=0
t.map{|w|
  if w>0
    if all-sum(w-1)<k
      cnt[w]+=1
      all+=1
      add(w,1)
    end
  else
    if cnt[-w]>0
      cnt[-w]-=1
      all-=1
      add(-w,-1)
    end
  end
}
p all
0