1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
| #include <iostream> #include <bits/stdc++.h> #include <string> #define LOCAL #define Lson(x) ((x << 1) +1) #define Rson(x) ((x << 1) +2) #define INF 99999999 using namespace std; const int N = 100005 ; int shift[35] , num[N] , len_shift ; string strLine ;
struct Node{ int left , right , Min_Value ; }node[4 * N ];
void build(int left , int right , int x = 0 ){ node[x].left = left ; node[x].right = right ; if(left == right){ node[x].Min_Value = num[left] ; return ; } int mid = (left + right ) / 2 ;
build(left , mid , Lson(x)) ; build(mid + 1 , right , Rson(x)) ; node[x].Min_Value = min(node[Lson(x)].Min_Value , node[Rson(x)].Min_Value ) ; }
void handle(){ len_shift = 0 ; shift[len_shift] = 0; for(int i = 6 ; i < strLine.length() ; i++){ if(strLine[i] >= '0' && strLine[i] <= '9' ){ shift[len_shift] = shift[len_shift] * 10 + (int) (strLine[i] - '0' ) ; } else{ shift[++len_shift ] = 0 ; } } sort(shift , shift + len_shift ) ;
}
int query(int left , int right , int x = 0 ){ if(node[x].left >= left && node[x].right <= right) return node[x].Min_Value ; int mid = (node[x].left + node[x].right ) / 2 ; int ans = INF ;
if( left <= mid ) ans = min(ans , query(left , right , Lson(x))) ; if(mid < right ) ans = min(ans , query(left , right , Rson(x))) ; return ans ; }
void set_num(int position , int value , int x = 0 ){ if(node[x].left == position && node[x].right == position ){ node[x].Min_Value = value ; return ; } int mid = (node[x].left + node[x].right ) / 2 ; if(position <= mid ) set_num(position , value , Lson(x) ); if(mid < position ) set_num(position , value , Rson(x)) ; node[x].Min_Value = min(node[Lson(x)].Min_Value , node[Rson(x)].Min_Value );
}
int main() { int n , q , intTemp ; ios::sync_with_stdio(0); #ifdef LOCAL freopen("out.txt" , "w" , stdout ) ; freopen("in1.txt" , "r" , stdin ) ; #endif cin >> n >> q ; for(int i = 1 ; i <= n ; i++) cin >> num[i] ; build(1,n);
while(q--){ cin >> strLine ; if(strLine[0] == 'q'){ handle(); cout << query(shift[0] , shift[1] ) << '\n' ; } else if (strLine[0] == 's'){ handle(); intTemp = num[shift[0]] ;
for(int i = 1 ; i < len_shift ; i++){ set_num(shift[i-1] , num[shift[i]]) ; num[shift[i-1]] = num[shift[i]] ; } num[shift[len_shift-1]] = intTemp ; set_num(shift[len_shift-1] , intTemp );
} } return 0; }
|