結果

問題 No.318 学学学学学
ユーザー simansiman
提出日時 2022-11-04 03:02:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,487 ms / 2,000 ms
コード長 2,243 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-07-18 07:28:44
合計ジャッジ時間 19,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
14,208 KB
testcase_01 AC 243 ms
16,768 KB
testcase_02 AC 266 ms
17,536 KB
testcase_03 AC 195 ms
15,488 KB
testcase_04 AC 241 ms
17,152 KB
testcase_05 AC 1,183 ms
35,840 KB
testcase_06 AC 1,487 ms
33,116 KB
testcase_07 AC 1,226 ms
31,952 KB
testcase_08 AC 1,008 ms
30,896 KB
testcase_09 AC 819 ms
29,696 KB
testcase_10 AC 656 ms
29,056 KB
testcase_11 AC 1,172 ms
35,968 KB
testcase_12 AC 925 ms
33,088 KB
testcase_13 AC 850 ms
32,072 KB
testcase_14 AC 764 ms
30,768 KB
testcase_15 AC 711 ms
29,664 KB
testcase_16 AC 662 ms
28,928 KB
testcase_17 AC 1,295 ms
32,280 KB
testcase_18 AC 941 ms
32,552 KB
testcase_19 AC 1,246 ms
32,464 KB
testcase_20 AC 650 ms
28,032 KB
testcase_21 AC 78 ms
12,160 KB
testcase_22 AC 79 ms
12,160 KB
testcase_23 AC 80 ms
12,288 KB
testcase_24 AC 78 ms
12,032 KB
testcase_25 AC 78 ms
12,288 KB
testcase_26 AC 79 ms
12,160 KB
testcase_27 AC 78 ms
12,288 KB
testcase_28 AC 83 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class RangeUpdateQuery
  attr_reader :n, :dat, :lazy

  # @param [Integer] len 区間の長さ
  def initialize(len, init: -1)
    @n = 1

    @n *= 2 while @n < len
    @dat = Array.new(2 * @n - 1, init)
    @lazy = Array.new(2 * @n - 1)
  end

  # @param [Integer] l 更新範囲の左端
  # @param [Integer] r 更新範囲の右端
  # @param [Integer] x 更新する値
  def update(l, r, x)
    fill(l, r, x, 0, 0, n - 1)
  end

  # @param [Integer] idx 取得したい値の箇所
  def find(idx)
    sum(idx, idx, 0, 0, n - 1)
  end

  def find_min(l, r)
    min(l, r, 0, 0, n - 1)
  end

  private

  # @param [Integer] a 探索範囲の左端
  # @param [Integer] b 探索範囲の右端
  # @param [Integer] x 更新する値
  # @param [Integer] idx 現在位置
  # @param [Integer] l 現在の探索範囲の左端
  # @param [Integer] r 現在の探索範囲の右端
  def fill(a, b, x, idx, l, r)
    return if r < a || b < l

    evaluate(idx, l, r)

    if a <= l && r <= b
      @lazy[idx] = x
    else
      fill(a, b, x, idx * 2 + 1, l, (l + r) / 2)
      fill(a, b, x, idx * 2 + 2, (l + r) / 2 + 1, r)
    end
  end

  def evaluate(idx, l, r)
    return if lazy[idx].nil?

    @dat[idx] = lazy[idx]

    if r - l > 0
      @lazy[2 * idx + 1] = lazy[idx]
      @lazy[2 * idx + 2] = lazy[idx]
    end

    @lazy[idx] = nil
  end

  def sum(a, b, idx, l, r)
    return 0 if r < a || b < l

    evaluate(idx, l, r)

    if a <= l && r <= b
      dat[idx]
    else
      vl = sum(a, b, idx * 2 + 1, l, (l + r) / 2)
      vr = sum(a, b, idx * 2 + 2, (l + r) / 2 + 1, r)

      vl + vr
    end
  end

  def min(a, b, idx, l, r)
    return 0 if r < a || b < l

    evaluate(idx, l, r)

    if a <= l && r <= b
      dat[idx]
    else
      vl = sum(a, b, idx * 2 + 1, l, (l + r) / 2)
      vr = sum(a, b, idx * 2 + 2, (l + r) / 2 + 1, r)

      vl < vr ? vl : vr
    end
  end
end

N = gets.to_i
A = gets.split.map(&:to_i)

left = Hash.new(Float::INFINITY)
right = Hash.new(-Float::INFINITY)

A.each_with_index do |a, i|
  left[a] = i if left[a] > i
  right[a] = i
end

ruq = RangeUpdateQuery.new(N)

A.uniq.sort.each do |a|
  l = left[a]
  r = right[a]
  ruq.update(l, r, a)
end

puts (0...N).map { |i| ruq.find(i) }.join(' ')
0