티스토리 뷰
백준 소스코드 [C++] 12844 XOR
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#define all(v) v.begin(), v.end()
#define pii pair<int,int>
#define make_unique(v) v.erase(unique(v.begin(), v.end()), v.end())
typedef long long ll;
using namespace std;
int n, m;
vector<int> arr, tree,lazy;
int init(int i,int l,int r) {
if (l == r) return tree[i] = arr[l];
int m = (l + r) / 2;
return tree[i] = init(2 * i, l, m) ^ init(2 * i + 1, m + 1, r);
}
void update_lazy(int i,int l,int r) {
if (lazy[i] != 0) {
tree[i] ^= lazy[i] * ((r - l + 1) % 2);
if (l != r) {
lazy[2 * i] ^= lazy[i];
lazy[2 * i + 1] ^= lazy[i];
}
lazy[i] = 0;
}
}
int update_range(int i, int l,int r, int L,int R,int val) {
update_lazy(i, l, r);
if (r < L || R < l) return tree[i];
if (L <= l && r <= R) {
tree[i] ^= val *((r - l + 1) % 2);
if(l!=r){
lazy[2 * i] ^= val;
lazy[2 * i + 1] ^= val;
}
return tree[i];
}
int m = (l + r) / 2;
return tree[i] = update_range(2 * i, l, m, L, R, val)
^ update_range(2 * i + 1, m + 1, r, L, R, val);
}
int query(int i,int l,int r,int L,int R) {
update_lazy(i, l, r);
if (r < L || R < l) return 0;
if (L <= l && r <= R) return tree[i];
int m = (l + r) / 2;
return query(2 * i, l, m, L, R)
^ query(2 * i + 1, m + 1, r, L, R);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
arr.resize(n);
tree.resize(4 * n);
lazy.resize(4 * n);
for (int i = 0;i < n;i++) cin >> arr[i];
init(1, 0, n - 1);
cin >> m;
int order, L, R, val, idx;
while (m--) {
cin >> order;
if (order == 1) {
cin >> L >> R >> val;
update_range(1, 0, n - 1, L, R, val);
}
else {
cin >> L >> R;
cout << query(1, 0, n - 1, L, R) << '\n';
}
}
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 2003 수들의 합 2 (0) | 2021.02.21 |
---|---|
백준 소스코드 [C++] 14245 XOR (0) | 2021.02.20 |
백준 소스코드 [C++] 16946 벽 부수고 이동하기 4 (0) | 2021.02.19 |
백준 소스코드 [C++] 1701 Cubeditor (0) | 2021.02.17 |
백준 소스코드 [C++] 1806 부분합 (0) | 2021.02.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 강한 순환 참조
- WWDC16
- 최단경로문제
- WWDC17
- 벨만포드 시간복잡도
- HIG
- mach-o
- 포드 풀커슨 알고리즘
- 부스트캠프 6기
- CPU와 Memory
- State Restoration
- WWDC21
- rxswift
- 에드몬드 카프 알고리즘
- MeTal
- 다익스트라 시간복잡도
- 코딩대회
- 벨만포드 알고리즘
- Testable
- 네트워크 유량
- observeOn
- 최대 매칭
- 최단경로 알고리즘
- WWDC19
- 네트워크 플로우
- 최단경로 문제
- CompositionalLayout
- IOS
- test coverage
- 컴퓨터 추상화
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함