結果

問題 No.59 鉄道の旅
ユーザー letrangerjpletrangerjp
提出日時 2017-06-17 22:00:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,104 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-04-08 20:37:37
合計ジャッジ時間 4,077 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
16,256 KB
testcase_01 AC 94 ms
16,256 KB
testcase_02 AC 95 ms
16,256 KB
testcase_03 AC 86 ms
16,256 KB
testcase_04 AC 358 ms
17,664 KB
testcase_05 AC 88 ms
16,256 KB
testcase_06 AC 87 ms
16,256 KB
testcase_07 AC 87 ms
16,256 KB
testcase_08 AC 107 ms
16,512 KB
testcase_09 AC 107 ms
16,384 KB
testcase_10 AC 107 ms
16,512 KB
testcase_11 AC 102 ms
16,384 KB
testcase_12 AC 213 ms
17,408 KB
testcase_13 AC 493 ms
17,792 KB
testcase_14 AC 1,104 ms
18,176 KB
testcase_15 AC 85 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# WAはelse節のbsearchがfind-anyモードでなかったため
N, K = gets.split.take(2).map(&:to_i)
WA = N.times.map{ gets.to_i }

cargo = []
WA.each{|w|
  if w > 0
    idx = cargo.bsearch_index{|v|v >= w}
    over_w = idx ? cargo.size - idx : 0
    if over_w < K
      cargo[idx || cargo.size, 0] = w
    end
  else
    idx = cargo.bsearch_index{|v|-w <=> v}
    cargo.delete_at(idx) if idx
  end
}
p cargo.size
0