結果

問題 No.318 学学学学学
ユーザー code-devocode-devo
提出日時 2016-03-04 19:43:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 834 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-06-22 16:24:28
合計ジャッジ時間 12,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
13,184 KB
testcase_01 AC 127 ms
14,720 KB
testcase_02 AC 132 ms
14,464 KB
testcase_03 AC 121 ms
14,208 KB
testcase_04 AC 130 ms
14,592 KB
testcase_05 AC 477 ms
27,904 KB
testcase_06 AC 834 ms
26,880 KB
testcase_07 AC 814 ms
26,368 KB
testcase_08 AC 798 ms
25,472 KB
testcase_09 AC 774 ms
26,112 KB
testcase_10 AC 741 ms
25,088 KB
testcase_11 AC 429 ms
27,776 KB
testcase_12 AC 359 ms
25,984 KB
testcase_13 AC 307 ms
25,728 KB
testcase_14 AC 302 ms
24,832 KB
testcase_15 AC 293 ms
24,192 KB
testcase_16 AC 284 ms
23,936 KB
testcase_17 AC 391 ms
25,472 KB
testcase_18 AC 389 ms
25,600 KB
testcase_19 AC 791 ms
26,752 KB
testcase_20 AC 339 ms
24,064 KB
testcase_21 AC 91 ms
12,160 KB
testcase_22 AC 88 ms
12,288 KB
testcase_23 AC 87 ms
12,288 KB
testcase_24 AC 89 ms
12,160 KB
testcase_25 AC 87 ms
12,288 KB
testcase_26 AC 90 ms
12,288 KB
testcase_27 AC 86 ms
12,288 KB
testcase_28 AC 86 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#配列aが昇順にソートされた状態を保ったまま要素nを入れる場合に、
#どの位置にインサートすればよいかを返す。
def insert_index(a, n)
  l = 0
  r = a.length
  return 0 if r == 0

  while l < r do
    m = (l + r) / 2

    case n <=> a[m]
    when 1 then
      return m + 1 if r - l <= 1
      l = m
    when 0 then
      return m + 1
    when -1 then
      return m if r - l <= 1
      r = m
    end
  end
end

gets
a = gets.split.map(&:to_i)

max_idxs = Hash.new{} #数が最後に現れるインデックスを格納する。
a.each.with_index do |n, idx|
  max_idxs[n] = idx
end

ans = []
open_nums = [] #今までに現れた数。要素は昇順にソートされている。出力に不要となった要素は削除される。
a.each.with_index do |n, idx|
  open_nums.insert(insert_index(open_nums, n), n)
  open_nums.pop while open_nums.size > 0 && idx > max_idxs[open_nums[-1]] #末尾の数がもう現れない数の場合、削除する。
  ans << open_nums[-1]
end
puts ans.join(" ")
0