結果

問題 No.59 鉄道の旅
ユーザー letrangerjpletrangerjp
提出日時 2017-06-17 22:00:07
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,034 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-10-01 11:35:04
合計ジャッジ時間 4,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 75 ms
12,032 KB
testcase_04 AC 315 ms
13,184 KB
testcase_05 AC 75 ms
12,288 KB
testcase_06 AC 73 ms
12,032 KB
testcase_07 AC 71 ms
12,032 KB
testcase_08 AC 91 ms
12,544 KB
testcase_09 AC 93 ms
12,416 KB
testcase_10 AC 96 ms
12,288 KB
testcase_11 AC 91 ms
12,416 KB
testcase_12 AC 199 ms
12,800 KB
testcase_13 AC 437 ms
13,440 KB
testcase_14 AC 1,034 ms
13,824 KB
testcase_15 AC 77 ms
12,160 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