結果

問題 No.59 鉄道の旅
ユーザー gigurururugigurururu
提出日時 2015-04-24 23:35:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 298 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-06-07 00:56:16
合計ジャッジ時間 2,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
19,840 KB
testcase_01 AC 93 ms
20,096 KB
testcase_02 AC 89 ms
19,968 KB
testcase_03 AC 89 ms
19,840 KB
testcase_04 AC 227 ms
29,824 KB
testcase_05 AC 88 ms
19,840 KB
testcase_06 AC 85 ms
20,096 KB
testcase_07 AC 87 ms
19,840 KB
testcase_08 AC 116 ms
20,864 KB
testcase_09 AC 105 ms
20,608 KB
testcase_10 AC 107 ms
20,352 KB
testcase_11 AC 96 ms
20,352 KB
testcase_12 AC 141 ms
27,776 KB
testcase_13 AC 239 ms
30,592 KB
testcase_14 AC 298 ms
34,432 KB
testcase_15 AC 86 ms
19,840 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