#include using namespace std; using ll = long long; #define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++) // Ref: https://qiita.com/ysuzuki19/items/d89057d65284ba1a16ac #define dump(var) do{std::cerr << #var << " : ";view(var);}while(0) template void view(T e){std::cerr << e << "\n";} template void view(const std::vector& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << "\n";} template void view(const std::vector >& vv){ std::cerr << "\n"; for(const auto& v : vv){ view(v); } } template void dump_cout(const T& v) { for(long long i = 0; i < v.size(); i++) std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); } #include using namespace atcoder; using S = pair; S op(S a, S b) { return max(a, b); } S e() { return {0, 0}; } void solve() { ll n, m; cin >> n >> m; vector a(m); rep(i, 0, m) { cin >> a[i].first; a[i].second = i+1; } segtree seg(a); ll q; cin >> q; while(q--) { ll t, x, y; cin >> t >> x >> y; x--; if(t == 1) { seg.set(x, {seg.get(x).first + y, x+1}); } if(t == 2) { seg.set(x, {seg.get(x).first - y, x+1}); } if(t == 3) { cout << seg.all_prod().second << "\n"; } } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); solve(); return 0; }