結果

問題 No.59 鉄道の旅
ユーザー tshigtshig
提出日時 2016-08-19 10:42:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,182 ms / 5,000 ms
コード長 802 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-06-07 02:23:17
合計ジャッジ時間 4,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 83 ms
12,288 KB
testcase_04 AC 480 ms
26,752 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 78 ms
12,416 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 106 ms
13,568 KB
testcase_09 AC 106 ms
13,568 KB
testcase_10 AC 104 ms
13,824 KB
testcase_11 AC 95 ms
13,696 KB
testcase_12 AC 275 ms
28,288 KB
testcase_13 AC 576 ms
28,672 KB
testcase_14 AC 1,182 ms
29,184 KB
testcase_15 AC 84 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Calc0059
  def initialize(args)
    args = args.map { |l| l.chomp.split(/\s+/) }
    @n, @k = args.shift.map(&:to_i)
    @ws = args.map(&:first).map(&:to_i)
  end

  def run
    stock = []
    @ws.each do |w|
      if w > 0
        if stock.size < @k || stock[-@k] < w
          add(stock, w)
        end
      else
        remove(stock, -w)
      end
    end
    stock.size
  end

  def add(stock, w)
    i = stock.bsearch_index { |x| x >= w }
    if i
      stock.insert(i, w)
    else
      stock.push(w)
    end
  end

  def remove(stock, w)
    i = stock.bsearch_index { |x| x >= w }
    if i
      if stock[i] == w
        stock.delete_at(i)
      end
    else
      if stock[0] == w
        stock.shift
      end
    end
  end
end

puts Calc0059.new(STDIN.readlines).run if __FILE__ == $0
0