結果

問題 No.318 学学学学学
ユーザー code-devocode-devo
提出日時 2016-03-04 19:58:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 819 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-06-22 16:25:54
合計ジャッジ時間 11,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
13,056 KB
testcase_01 AC 125 ms
14,592 KB
testcase_02 AC 141 ms
14,848 KB
testcase_03 AC 117 ms
14,080 KB
testcase_04 AC 133 ms
14,592 KB
testcase_05 AC 468 ms
27,648 KB
testcase_06 AC 819 ms
26,880 KB
testcase_07 AC 811 ms
26,496 KB
testcase_08 AC 786 ms
25,344 KB
testcase_09 AC 771 ms
26,240 KB
testcase_10 AC 737 ms
25,088 KB
testcase_11 AC 424 ms
28,288 KB
testcase_12 AC 358 ms
26,112 KB
testcase_13 AC 303 ms
25,728 KB
testcase_14 AC 300 ms
24,832 KB
testcase_15 AC 287 ms
24,064 KB
testcase_16 AC 282 ms
24,064 KB
testcase_17 AC 402 ms
25,600 KB
testcase_18 AC 393 ms
25,472 KB
testcase_19 AC 791 ms
26,880 KB
testcase_20 AC 340 ms
24,064 KB
testcase_21 AC 88 ms
12,288 KB
testcase_22 AC 88 ms
12,160 KB
testcase_23 AC 87 ms
12,288 KB
testcase_24 AC 87 ms
12,288 KB
testcase_25 AC 88 ms
12,160 KB
testcase_26 AC 88 ms
12,288 KB
testcase_27 AC 89 ms
12,288 KB
testcase_28 AC 88 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#each.with_indexとeach_with_indexの差をテストしてみる。

#配列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