結果

問題 No.875 Range Mindex Query
ユーザー beetbeet
提出日時 2019-08-06 19:10:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 680 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 202,376 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-12-24 09:00:26
合計ジャッジ時間 26,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,496 KB
testcase_01 AC 3 ms
8,960 KB
testcase_02 AC 4 ms
8,832 KB
testcase_03 AC 2 ms
12,064 KB
testcase_04 AC 3 ms
12,068 KB
testcase_05 AC 2 ms
8,960 KB
testcase_06 AC 4 ms
12,068 KB
testcase_07 AC 4 ms
8,960 KB
testcase_08 AC 3 ms
12,064 KB
testcase_09 AC 3 ms
8,832 KB
testcase_10 AC 4 ms
10,532 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  int n,q;
  cin>>n>>q;
  vector<int> as(n);
  for(int i=0;i<n;i++) cin>>as[i];

  for(int i=0;i<q;i++){
    int t;
    cin>>t;
    if(t==1){
      int l,r;
      cin>>l>>r;
      l--;r--;
      swap(as[l],as[r]);
    }

    if(t==2){
      int l,r;
      cin>>l>>r;
      l--;
      int k=l;
      for(int j=l;j<r;j++){
        if(as[k]>as[j]) k=j;
      }
      cout<<k+1<<"\n";
    }
  }
  cout<<flush;
  return 0;
}
0