This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#define DEBUG 1
#include <bits/stdc++.h>
using namespace std;
#define X first
#define Y second
#define mp make_pair
#define pb push_back
typedef long long ll;
typedef pair <int, int> pii;
typedef pair <int, pii> pip;
typedef pair <pii, int> ppi;
typedef pair <ll, ll> pll;
const int INF=0x3f3f3f3f;
const int SIZ=500;
const int N=2e5+5;
int q, t, id=1, n=0, buc=1, lastans=0;
pii p[N];
vector <int> R[SIZ], L[SIZ], v[SIZ], pom;
int maxi[SIZ];
int cmp(int a, int b) {
return p[a].Y-p[a].X<p[b].Y-p[b].X;
}
void xoraj(int &x) {
x=x^(t*lastans);
}
void dodaj(pii pp) {
int d=pp.Y-pp.X+1;
for (int i=0; i<buc; ++i) {
if (i!=buc-1 && maxi[i]<d) continue;
v[i].pb(id);
L[i].insert(lower_bound(L[i].begin(), L[i].end(), pp.X), pp.X);
R[i].insert(lower_bound(R[i].begin(), R[i].end(), pp.Y), pp.Y);
maxi[i]=max(maxi[i], d);
break;
}
p[id++]=pp; n++;
}
void obrisi(int ind) {
n--; pii pp=p[ind];
for (int i=0; i<buc; ++i) {
if (maxi[i]<pp.Y-pp.X+1) continue;
L[i].erase(lower_bound(L[i].begin(), L[i].end(), pp.X));
R[i].erase(lower_bound(R[i].begin(), R[i].end(), pp.Y));
int iz=-1;
for (int j=0; j<v[i].size(); ++j) if (v[i][j]==ind) iz=j;
assert(iz!=-1);
v[i].erase(v[i].begin()+iz);
break;
}
}
void rebuild() {
for (int i=0; i<buc; ++i) {
for (int x:v[i]) pom.pb(x);
v[i].clear();
L[i].clear();
R[i].clear();
maxi[i]=0;
}
sort(pom.begin(), pom.end(), cmp);
buc=1;
for (int x:pom) {
if (v[buc-1].size()>=SIZ) buc++;
maxi[buc-1]=p[x].Y-p[x].X+1;
v[buc-1].pb(x);
L[buc-1].pb(p[x].X); R[buc-1].pb(p[x].Y);
}
for (int i=0; i<buc; ++i) sort(L[i].begin(), L[i].end()), sort(R[i].begin(), R[i].end());
}
int query(int l, int r, int k) {
int prvi=1, losi=0;
for (int i=0; i<buc; ++i) {
if (maxi[i]<k) {
losi+=(int)v[i].size();
continue;
}
if (prvi) {
for (int x:v[i]) losi+=(p[x].Y<l+k-1) || (p[x].X>r-k+1);
prvi=0;
}
else {
losi+=L[i].end()-upper_bound(L[i].begin(), L[i].end(), r-k+1);
losi+=lower_bound(R[i].begin(), R[i].end(), l+k-1)-R[i].begin();
}
}
return n-losi;
}
int main() {
scanf("%d %d", &q, &t);
for (int i=0; i<q; ++i) {
int tip, l, r, k;
scanf("%d", &tip);
if (tip==1) {
scanf("%d %d", &l, &r); xoraj(l); xoraj(r);
if (l>r) swap(l, r);
dodaj(mp(l, r));
}
else if (tip==2) {
scanf("%d", &k);
obrisi(k);
}
else {
scanf("%d %d %d", &l, &r, &k); xoraj(l); xoraj(r);
if (l>r) swap(l, r);
lastans=query(l, r, k);
printf("%d\n", lastans);
}
// if (i%SIZ==0 && i) rebuild();
}
return 0;
}
Compilation message (stderr)
segments.cpp: In function 'void obrisi(int)':
segments.cpp:53:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for (int j=0; j<v[i].size(); ++j) if (v[i][j]==ind) iz=j;
| ~^~~~~~~~~~~~
segments.cpp: In function 'int main()':
segments.cpp:99:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
99 | scanf("%d %d", &q, &t);
| ~~~~~^~~~~~~~~~~~~~~~~
segments.cpp:102:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
102 | scanf("%d", &tip);
| ~~~~~^~~~~~~~~~~~
segments.cpp:104:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
104 | scanf("%d %d", &l, &r); xoraj(l); xoraj(r);
| ~~~~~^~~~~~~~~~~~~~~~~
segments.cpp:109:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
109 | scanf("%d", &k);
| ~~~~~^~~~~~~~~~
segments.cpp:113:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
113 | scanf("%d %d %d", &l, &r, &k); xoraj(l); xoraj(r);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |