This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2")
#include <bits/stdc++.h>
#include <emmintrin.h>
#include <x86intrin.h>
#define speed \
ios_base::sync_with_stdio(0); \
cin.tie(0); \
cout.tie(0);
#define precision \
cout.precision(30); \
cerr.precision(10);
#define ll long long
#define ld long double
#define pb(x) push_back(x)
#define sz(x) (int)x.size()
#define mp(x, y) make_pair(x, y)
#define all(x) x.begin(), x.end()
#define pc(x) __builtin_popcount(x)
#define pcll(x) __builtin_popcountll(x)
#define F first
#define S second
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
void ioi(string name) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
const int bl = 900;
int n, m, g, t, sz, lastans, a[2][200005], b[2][200005], c[2][200005],
pos[200005];
pair<int, int> d[bl + 5], e[200005];
inline int kek(int l, int r, int x) {
int new_ans = 0;
#pragma GCC ivdep
for (int i = 1; i <= sz; i++)
new_ans +=
c[0][d[i].S] <= r - x + 1 && c[1][d[i].S] >= l + x - 1 && x <= d[i].F;
int p = lower_bound(e + 1, e + m + 1, mp(x, 0)) - e;
p = m - p + 1;
l += x - 1;
r -= x - 1;
swap(l, r);
__m256i vl = _mm256_set1_epi32(l);
__m256i vr = _mm256_set1_epi32(r);
__m256i vzero = _mm256_setzero_si256();
__m256i vacc = _mm256_setzero_si256();
int i = 0;
for (; i < p - 7; i += 8) {
__m256i vb0 = _mm256_loadu_si256((__m256i*)&b[0][i]);
__m256i vb1 = _mm256_loadu_si256((__m256i*)&b[1][i]);
__m256i vcmp0 = _mm256_cmpgt_epi32(vl, vb0);
__m256i vcmp1 = _mm256_cmpgt_epi32(vb1, vr);
__m256i vand = _mm256_and_si256(vcmp0, vcmp1);
vacc = _mm256_add_epi32(vacc, vand);
}
for (; i < p; i++) new_ans += b[0][i] < l && r < b[1][i];
int accumulator[8];
_mm256_storeu_si256((__m256i*)accumulator, vacc);
new_ans -= accumulator[0] + accumulator[1] + accumulator[2] + accumulator[3] +
accumulator[4] + accumulator[5] + accumulator[6] + accumulator[7];
return new_ans;
}
void mrg() {
pair<int, int> tmp[sz + m + 5];
merge(e + 1, e + m + 1, d + 1, d + sz + 1, tmp + 1);
m += sz;
sz = 0;
for (int i = 1; i <= m; i++) e[i] = tmp[i];
}
void bld() {
sort(d + 1, d + sz + 1);
mrg();
for (int i = 1; i <= m; i++)
b[0][m - i] = c[0][e[i].S] - 1, b[1][m - i] = c[1][e[i].S] + 1,
pos[e[i].S] = m - i;
}
int main() {
speed;
precision;
// code
memset(pos, -1, sizeof pos);
cin >> n >> t;
for (int i = 1; i <= n; i++) {
int type, l, r, x;
cin >> type;
if (type == 1) {
cin >> l >> r;
l ^= t * lastans;
r ^= t * lastans;
if (l > r) swap(l, r);
++g;
c[0][g] = l;
c[1][g] = r;
d[++sz] = mp(r - l + 1, g);
}
if (type == 2) {
cin >> x;
c[0][x] = 1e9;
c[1][x] = -1e9;
if (~pos[x]) {
b[0][pos[x]] = 1e9;
b[1][pos[x]] = -1e9;
}
}
if (type == 3) {
cin >> l >> r >> x;
l ^= t * lastans;
r ^= t * lastans;
if (l > r) swap(l, r);
cout << (lastans = kek(l, r, x)) << "\n";
}
if (bl <= sz) bld();
}
// endl
#ifndef ONLINE_JUDGE
cerr << "\nTime elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << " s.\n";
#endif
return 0;
}
Compilation message (stderr)
segments.cpp: In function 'int kek(int, int, int)':
segments.cpp:46:11: warning: unused variable 'vzero' [-Wunused-variable]
46 | __m256i vzero = _mm256_setzero_si256();
| ^~~~~
segments.cpp: In function 'void ioi(std::string)':
segments.cpp:26:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | freopen((name + ".in").c_str(), "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
segments.cpp:27:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
27 | freopen((name + ".out").c_str(), "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |