#include using namespace std; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; int main() { lint N, M, Q; cin >> N >> M; vi v(M); vin(v); lint a=0, b=0, c=0, x, y, z; set> s; rep(i, M) { s.insert({-v[i], -i}); } cin >> Q; rep(_, Q) { cin >> x >> y >> z; y--; if (x == 1) { s.erase({-v[y], -y}); v[y] += z; s.insert({-v[y], -y}); } else if (x == 2) { s.erase({-v[y], -y}); v[y] -= z; s.insert({-v[y], -y}); } else { tie(a, b) = *s.begin(); std::cout << 1-b << '\n'; } } }