結果

問題 No.875 Range Mindex Query
ユーザー 2bit2bit
提出日時 2023-01-24 09:44:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,704 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 203,376 KB
実行使用メモリ 8,748 KB
最終ジャッジ日時 2023-09-08 06:42:56
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 129 ms
8,236 KB
testcase_12 AC 109 ms
5,924 KB
testcase_13 AC 89 ms
8,448 KB
testcase_14 AC 85 ms
8,488 KB
testcase_15 AC 125 ms
8,524 KB
testcase_16 AC 175 ms
8,484 KB
testcase_17 AC 193 ms
8,748 KB
testcase_18 AC 182 ms
8,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
#define fix(x) fixed << setprecision(x)
#define eb emplace_back
constexpr char nl='\n';
using namespace std;
using ll = long long;
using ld = long double;
using vl = vector<long long>;
using vvl = vector<vector<long long>>;
using vs = vector<string>;
using pl = pair<long long, long long>;
template <typename T> inline bool chmin(T& a, const T& b) {bool compare = a > b; if (a > b) a = b; return compare;}
template <typename T> inline bool chmax(T& a, const T& b) {bool compare = a < b; if (a < b) a = b; return compare;}
template<class T>using rp_queue=priority_queue<T,vector<T>,greater<T>>;
void fast_io(){cin.tie(nullptr);ios_base::sync_with_stdio(false);}
template <typename T> T gcd(T a, T b) {if (b == 0)return a; else return gcd(b, a % b);}
template <typename T> inline T lcm(T a, T b) {return a /gcd(a, b)*b;}
const ll INF = 1LL << 60;
const ld PI = 3.14159265358979323846L;
#include<atcoder/segtree>
using namespace atcoder;
pl op(pl a,pl b){
  if(a.first<b.first){
    return a;
  }else {
    return b;
  }
}
pl e(){
  return {INF,INF};
}
void solve(){
  int N,Q;cin>>N>>Q;
  vector<pl> A(N);rep(i,N)cin>>A[i].first,A[i].second=i;
  segtree<pl,op,e> seg(A);
  while(Q--){
    int t,l,r;
    cin>>t>>l>>r;
    if(t==1){
      l--;
      r--;
      pl L = seg.get(l),R =seg.get(r);
      swap(L.second,R.second);
      seg.set(l,R);
      seg.set(r,L);
    }else{
      l--;
      cout<<seg.prod(l,r).second+1<<endl;
    }
  }
}
int main(){
  fast_io();
  int num_tc = 1;
  //cin >> num_tc;
  rep(tc,num_tc){
    //cout << "Case #" << tc+1 << ": " ;// << endl;
    solve();
  }
}
0