結果

問題 No.875 Range Mindex Query
ユーザー テナガザルテナガザル
提出日時 2024-08-04 01:53:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 2,089 bytes
コンパイル時間 1,304 ms
コンパイル使用メモリ 96,888 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-04 01:53:29
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 156 ms
6,948 KB
testcase_12 AC 131 ms
6,940 KB
testcase_13 AC 117 ms
6,944 KB
testcase_14 AC 117 ms
6,944 KB
testcase_15 AC 181 ms
6,944 KB
testcase_16 AC 211 ms
6,944 KB
testcase_17 AC 241 ms
6,940 KB
testcase_18 AC 228 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

template <typename T> class segTree
{
private:
  const T e;
  int num;
  std::vector<T> dat;
  T (*const eval)(T &, T &) {};
public:
  segTree(std::vector<T> &v, T E, T (*func)(T &, T &)) : e(E), eval(func)
  {
    int siz = static_cast<int>(v.size());
    for (num = 1; num < siz; num <<= 1);
    dat = std::vector<T> (2 * num - 1, e);
    for (int i = 0; i < siz; ++i) dat[i + num - 1] = v[i];
    for (int i = num - 2; i >= 0; --i) dat[i] = eval(dat[i * 2 + 1], dat[i * 2 + 2]);
  }
  segTree(int n, T E, T (*func)(T &, T &)) : e(E), eval(func)
  {
    for (num = 1; num < n; num <<= 1);
    dat = std::vector<T> (2 * num - 1, e);
  }
  void update_a(int i, T val)
  {
    for (i += num - 1, dat[i] = val; i != 0;)
    {
      i = (i - 1) / 2;
      dat[i] = eval(dat[i * 2 + 1], dat[i * 2 + 2]);
    }
  }
  void update_r(int i, T val)
  {
    for (i += num - 1, dat[i] = eval(dat[i], val); i != 0;)
    {
      i = (i - 1) / 2;
      dat[i] = eval(dat[i * 2 + 1], dat[i * 2 + 2]);
    }
  }
  T getval(int left, int right)
  {
    left = max(0, left), right = min(num, right);
    T ansl = e, ansr = e;
    for (left += num - 1, right += num - 1; left < right; left >>= 1, right >>= 1)
    {
      if (!(left & 1)) ansl = eval(ansl, dat[left]);
      if (--right & 1) ansr = eval(dat[right], ansr);
    }
    return eval(ansl, ansr);
  }
  T getval(int id) {return dat[num - 1 + id];}
};

int main()
{
  int n, q;
  cin >> n >> q;
  vector<int> a(n), id(n);
  for (int i = 0; i < n; ++i)
  {
    cin >> a[i];
    --a[i];
    id[a[i]] = i + 1;
  }
  segTree<int> sg(a, 1e9, [](int &a, int &b) -> int {return min(a, b);});
  while (q--)
  {
    int t;
    cin >> t;
    if (t == 1)
    {
      int l, r;
      cin >> l >> r;
      --l, --r;
      int vl = sg.getval(l), vr = sg.getval(r);
      sg.update_a(l, vr);
      sg.update_a(r, vl);
      swap(id[vl], id[vr]);
    }
    else if (t == 2)
    {
      int l, r;
      cin >> l >> r;
      --l;
      cout << id[sg.getval(l, r)] << endl;
    }
  }
}
0