# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
405695 | ritul_kr_singh | 운세 보기 2 (JOI14_fortune_telling2) | C++17 | 190 ms | 18180 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define sp << ' ' <<
#define nl << '\n'
const int INF = 1e18;
struct FenwickTree{
vector<bool> a; int n, s;
FenwickTree(int N){ a.resize((n=N)+1); }
void add(int i){
for(++i; i<=n; i+=i&-i) a[i] = a[i] ^ 1;
}
int get(int i){
for(s=0; i>=1; i-=i&-i) s ^= a[i];
return s;
}
int get(int i, int j){ return get(j+1) ^ get(i); }
};
struct SegmentTree{
vector<int> a; int sz = 1;
SegmentTree(vector<int> &v){
while(sz < (int)v.size()) sz += sz;
a.assign(2*sz, -1);
build(v, 0, 0, sz);
}
void build(vector<int> &v, int x, int lx, int rx){
if(rx-lx==1){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |