#include <bits/stdc++.h>
#define int long long
using namespace std;
int gcd(int a, int b) {
a = abs(a);
b = abs(b);
if(a < b) swap(a, b);
while(b) {
a %= b;
swap(a, b);
}
return a;
}
vector<int> B;
int getidx(int n) {
return lower_bound(B.begin(),B.end(),n) - B.begin();
}
struct SegTree {
vector<int> seg;
int MAX;
SegTree(int N) {
int i;
for(i=2;i<2*N;i*=2) {}
seg.resize(i);
MAX = i;
}
int sum(int s, int e, int n, int ns, int ne) {
if(e<=ns||ne<=s) return 0;
if(s<=ns&&ne<=e) return seg[n];
int mid = ns + ne >> 1;
return sum(s, e, 2*n, ns, mid) + sum(s, e, 2*n+1, mid, ne);
}
void update(int n) {
n += MAX/2;
n /= 2;
while(n) {
seg[n] = seg[2*n] + seg[2*n+1];
n /= 2;
}
}
void Plus(int n) {
seg[n+MAX/2]++;
update(n);
}
void Minus(int n) {
seg[n+MAX/2]--;
update(n);
}
int sum(int s, int e) {
return sum(s, e, 1, 0, MAX/2);
}
};
int L[1000005];
int R[1000005];
main() {
cin.sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int N, a, b;
cin >> N >> a >> b;
int d = gcd(a, b + 1);
int c = a / d;
assert(a % d == 0);
__uint128_t k2 = b * c;
int k;
if(k2 > 1e18 + 5) k = 1e18 + 5;
else k = k2;
assert(k < 1e18 + 10);
assert(k > 0);
bool isAll = false;
int i;
B.push_back(0);
B.push_back(k);
for(i=0;i<N;i++) {
cin >> L[i] >> R[i];
if(R[i] - L[i] >= k-1) isAll = true;
L[i] %= k;
R[i] %= k;
R[i]++;
B.push_back(L[i]);
B.push_back(R[i]);
}
sort(B.begin(),B.end());
B.erase(unique(B.begin(),B.end()),B.end());
SegTree tree(B.size() + 10);
for(i=0;i<N;i++) {
int l = getidx(L[i]);
int r = getidx(R[i]);
if(l < r) {
tree.Plus(l);
tree.Minus(r);
}
else {
tree.Plus(0);
tree.Minus(r);
tree.Plus(l);
tree.Minus(B.size());
}
}
int cnt = 0;
for(i=0;i<B.size()-1;i++) {
if(tree.sum(0,i+1)!=0) {
cnt += B[i+1]-B[i];
}
}
if(isAll) cnt = k;
cout << cnt;
}
Compilation message
strange_device.cpp: In member function 'long long int SegTree::sum(long long int, long long int, long long int, long long int, long long int)':
strange_device.cpp:30:22: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
30 | int mid = ns + ne >> 1;
| ~~~^~~~
strange_device.cpp: At global scope:
strange_device.cpp:55:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
55 | main() {
| ^~~~
strange_device.cpp: In function 'int main()':
strange_device.cpp:101:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
101 | for(i=0;i<B.size()-1;i++) {
| ~^~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
9 ms |
1048 KB |
Output is correct |
3 |
Correct |
9 ms |
976 KB |
Output is correct |
4 |
Correct |
0 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Correct |
1 ms |
332 KB |
Output is correct |
8 |
Correct |
1 ms |
332 KB |
Output is correct |
9 |
Correct |
1 ms |
332 KB |
Output is correct |
10 |
Correct |
0 ms |
204 KB |
Output is correct |
11 |
Correct |
0 ms |
204 KB |
Output is correct |
12 |
Correct |
1 ms |
204 KB |
Output is correct |
13 |
Correct |
0 ms |
204 KB |
Output is correct |
14 |
Correct |
1 ms |
204 KB |
Output is correct |
15 |
Correct |
1 ms |
332 KB |
Output is correct |
16 |
Correct |
8 ms |
1044 KB |
Output is correct |
17 |
Correct |
90 ms |
5564 KB |
Output is correct |
18 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 6 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 6 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
4 |
Correct |
1 ms |
376 KB |
Output is correct |
5 |
Correct |
414 ms |
31656 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
931 ms |
48116 KB |
Output is correct |
3 |
Correct |
962 ms |
48296 KB |
Output is correct |
4 |
Correct |
932 ms |
48056 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
931 ms |
48116 KB |
Output is correct |
3 |
Correct |
962 ms |
48296 KB |
Output is correct |
4 |
Correct |
932 ms |
48056 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
891 ms |
48340 KB |
Output is correct |
7 |
Correct |
915 ms |
48300 KB |
Output is correct |
8 |
Correct |
905 ms |
48236 KB |
Output is correct |
9 |
Correct |
985 ms |
48204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
931 ms |
48116 KB |
Output is correct |
3 |
Correct |
962 ms |
48296 KB |
Output is correct |
4 |
Correct |
932 ms |
48056 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
87 ms |
5608 KB |
Output is correct |
7 |
Correct |
90 ms |
5564 KB |
Output is correct |
8 |
Correct |
83 ms |
5564 KB |
Output is correct |
9 |
Correct |
95 ms |
5520 KB |
Output is correct |
10 |
Correct |
88 ms |
5640 KB |
Output is correct |
11 |
Correct |
89 ms |
5560 KB |
Output is correct |
12 |
Correct |
84 ms |
5724 KB |
Output is correct |
13 |
Correct |
94 ms |
5592 KB |
Output is correct |
14 |
Correct |
90 ms |
5688 KB |
Output is correct |
15 |
Correct |
90 ms |
5696 KB |
Output is correct |
16 |
Correct |
93 ms |
5548 KB |
Output is correct |
17 |
Correct |
86 ms |
5572 KB |
Output is correct |
18 |
Correct |
929 ms |
48156 KB |
Output is correct |
19 |
Correct |
930 ms |
48272 KB |
Output is correct |
20 |
Correct |
993 ms |
48304 KB |
Output is correct |
21 |
Correct |
96 ms |
5560 KB |
Output is correct |
22 |
Correct |
85 ms |
5672 KB |
Output is correct |
23 |
Correct |
164 ms |
12756 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
94 ms |
5620 KB |
Output is correct |
3 |
Correct |
95 ms |
5560 KB |
Output is correct |
4 |
Correct |
1026 ms |
48312 KB |
Output is correct |
5 |
Correct |
92 ms |
5636 KB |
Output is correct |
6 |
Correct |
92 ms |
5608 KB |
Output is correct |
7 |
Correct |
93 ms |
5564 KB |
Output is correct |
8 |
Correct |
93 ms |
5544 KB |
Output is correct |
9 |
Correct |
91 ms |
5648 KB |
Output is correct |
10 |
Correct |
92 ms |
5644 KB |
Output is correct |
11 |
Correct |
93 ms |
5588 KB |
Output is correct |
12 |
Correct |
86 ms |
5576 KB |
Output is correct |
13 |
Correct |
94 ms |
5644 KB |
Output is correct |
14 |
Correct |
999 ms |
48344 KB |
Output is correct |
15 |
Correct |
96 ms |
5772 KB |
Output is correct |
16 |
Correct |
910 ms |
48236 KB |
Output is correct |
17 |
Correct |
913 ms |
48168 KB |
Output is correct |
18 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 6 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
9 ms |
1048 KB |
Output is correct |
3 |
Correct |
9 ms |
976 KB |
Output is correct |
4 |
Correct |
0 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Correct |
1 ms |
332 KB |
Output is correct |
8 |
Correct |
1 ms |
332 KB |
Output is correct |
9 |
Correct |
1 ms |
332 KB |
Output is correct |
10 |
Correct |
0 ms |
204 KB |
Output is correct |
11 |
Correct |
0 ms |
204 KB |
Output is correct |
12 |
Correct |
1 ms |
204 KB |
Output is correct |
13 |
Correct |
0 ms |
204 KB |
Output is correct |
14 |
Correct |
1 ms |
204 KB |
Output is correct |
15 |
Correct |
1 ms |
332 KB |
Output is correct |
16 |
Correct |
8 ms |
1044 KB |
Output is correct |
17 |
Correct |
90 ms |
5564 KB |
Output is correct |
18 |
Runtime error |
2 ms |
460 KB |
Execution killed with signal 6 |