結果

問題 No.875 Range Mindex Query
ユーザー qsako6qsako6
提出日時 2019-09-07 16:35:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,431 ms / 2,000 ms
コード長 1,278 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-06-26 21:38:33
合計ジャッジ時間 11,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,416 KB
testcase_01 AC 93 ms
12,416 KB
testcase_02 AC 94 ms
12,288 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 89 ms
12,416 KB
testcase_06 AC 97 ms
12,416 KB
testcase_07 AC 94 ms
12,160 KB
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 92 ms
12,288 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 AC 1,233 ms
25,216 KB
testcase_12 AC 980 ms
20,096 KB
testcase_13 AC 950 ms
28,288 KB
testcase_14 AC 933 ms
27,776 KB
testcase_15 AC 1,202 ms
28,800 KB
testcase_16 AC 1,319 ms
28,544 KB
testcase_17 AC 1,431 ms
29,056 KB
testcase_18 AC 1,389 ms
29,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:43: warning: mismatched indentations at 'end' with 'class' at 1
Syntax OK

ソースコード

diff #

class RMQ
    def initialize(n, inf = (1<<31) - 1)
      @n = n, @l = 1, @inf = inf
      while @l < n
        @l <<= 1
      end
      @data = Array.new(@l * 2, @inf)
    end
  
    def update(i, x)
      i += @l
      @data[i] = x
      i >>= 1
      while i > 0
        @data[i] = min(@data[i * 2], @data[i * 2 + 1])
        i >>= 1
      end
      true
    end
  
    # minimum of [l, r)
    def query(l, r)
      _query(l, r, 1, 0, @l)
    end
  
    def [](k)
      @data[@l + k]
    end
  
    private
  
    def _query(l, r, k, sl, sr)
      return @inf if sr <= l || r <= sl
      return @data[k] if l <= sl && sr <= r
      dl = _query(l, r, k * 2, sl, (sl + sr) / 2)
      dr = _query(l, r, k * 2 + 1, (sl + sr) / 2, sr)
      min(dl, dr)
    end
  
    def min(a, b)
      return (a > b ? b : a)
    end
  end
  
  h = {}
  n, q = gets.split.map(&:to_i)
  a = gets.split.map(&:to_i)
  rmq = RMQ.new(n)
  n.times do |i|
    h[a[i]] = i
    rmq.update(i, a[i])
  end
  ans = []
  q.times do
    c, l, r = gets.split.map(&:to_i)
    l -= 1
    r -= 1
    if c == 1
      tmpl = rmq[l]
      tmpr = rmq[r]
      rmq.update(l, tmpr)
      rmq.update(r, tmpl)
      h[tmpr] = l
      h[tmpl] = r
    else
      ans << h[rmq.query(l, r + 1)] + 1
    end
  end
  
  puts ans
0