Submission #1092287

#TimeUsernameProblemLanguageResultExecution timeMemory
1092287TrinhKhanhDungXORanges (eJOI19_xoranges)C++14
100 / 100
70 ms10364 KiB
#include <bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define sz(x) (int)x.size()
#define ALL(v) v.begin(),v.end()
#define MASK(k) (1LL << (k))
#define BIT(x, i) (((x) >> (i)) & 1)
#define oo (ll)1e18
#define INF (ll)1e9
#define MOD (ll)(998244353)

using namespace std;

template<class T1, class T2>
    bool maximize(T1 &a, T2 b){if(a < b){a = b; return true;} return false;}

template<class T1, class T2>
    bool minimize(T1 &a, T2 b){if(a > b){a = b; return true;} return false;}

template<class T1, class T2>
    void add(T1 &a, T2 b){a += b; if(a >= MOD) a -= MOD;}

template<class T1, class T2>
    void sub(T1 &a, T2 b){a -= b; if(a < 0) a += MOD;}

template<class T>
    void cps(T &v){sort(ALL(v)); v.resize(unique(ALL(v)) - v.begin());}

const int MAX = 2e5 + 10;

struct fen{
    vector<ll> tree;
    int n;

    fen(int _n = 0){
        n = _n;
        tree.resize(n + 3, 0);
    }

    void upd(int p, ll c){
        while(p <= n){
            tree[p] ^= c;
            p += p & -p;
        }
    }

    ll get(int p){
        ll ans = 0;
        while(p){
            ans ^= tree[p];
            p -= p & -p;
        }
        return ans;
    }
};

int N, Q;
int a[MAX];

void solve(){
    cin >> N >> Q;
    fen bit[2];
    bit[0] = bit[1] = fen(N);
    for(int i = 1; i <= N; i++){
        cin >> a[i];
        bit[i & 1].upd(i, a[i]);
    }

    while(Q--){
        int t, x, y; cin >> t >> x >> y;

        if(t == 1){
            bit[x & 1].upd(x, a[x]);
            a[x] = y;
            bit[x & 1].upd(x, a[x]);
        }

        if(t == 2){
            if((y - x + 1) % 2 == 0) cout << 0 << '\n';
            else{
                cout << (bit[x & 1].get(y) ^ bit[x & 1].get(x - 1)) << '\n';
            }
        }
    }
}

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0);
//     freopen("cnt-mst.inp","r",stdin);
//     freopen("cnt-mst.out","w",stdout);

    int t = 1;
//    cin >> t;
    while(t--)
        solve();

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...