#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
/*
Observations:
(1, b) = b
(b+1, b) = b
If a is even, (a, 1) = a/2
Else if a is odd, (a, 1) = a
b divides (a, b)
If b+1 divides a
If a and b+1 are coprime (a, b) = a*b
a*b / gcd(a, b+1) = ;
lcm(a, b+1) - a
*/
long long long_gcd(long long a, long long b)
{
// cout << "gcd " << a << ' ' << b << '\n';
if(a == b) return a;
if(a < b) swap(a, b);
if(b == 0) return a;
return long_gcd(a%b, b);
}
long long long_abs(long long x)
{
if(x >= 0) return x;
return -x;
}
long long long_sign(long long x)
{
if(x > 0) return 1;
return -1;
}
int main()
{
int n;
long long A, B;
cin >> n >> A >> B;
long long period = A * B / long_gcd(A, B+1);
// cout << period << '\n';
long long l, r;
if(n == 1)
{
cin >> l >> r;
if(r-l+1 >= period)
{
cout << period << '\n';
}
else if(l % period <= r % period)
{
cout << (r % period) - (l % period) + 1 << '\n';
}
else
{
cout << period - ((r % period) - (l % period) + 1) + 2 << '\n';
}
return 0;
}
vector<long long> endpoints;
for(int i = 1; i <= n; i++)
{
cin >> l >> r;
if(l % period <= r % period)
{
endpoints.push_back(l % period + 1);
endpoints.push_back(-(r % period) - 1 - 1);
}
else
{
endpoints.push_back(l % period + 1);
endpoints.push_back(-period - 1);
endpoints.push_back(0 + 1);
endpoints.push_back(-(r % period) - 1 - 1);
}
}
// for(long long e: endpoints) cout << e << ' ';
// cout << '\n';
sort(endpoints.begin(), endpoints.end(), [] (long long p, long long q)
{
return long_abs(p) < long_abs(q);
});
// for(long long e: endpoints) cout << e << ' ';
// cout << '\n';
long long res = 0;
long long count = 0;
count += long_sign(endpoints[0]);
for(int i = 1; i < endpoints.size(); i++)
{
// cout << count << ' ' << long_abs(endpoints[i]) - long_abs(endpoints[i-1]) << '\n';
if(count > 0) res += long_abs(endpoints[i]) - long_abs(endpoints[i-1]);
count += long_sign(endpoints[i]);
}
cout << res << '\n';
}
Compilation message
strange_device.cpp: In function 'int main()':
strange_device.cpp:121:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
121 | for(int i = 1; i < endpoints.size(); i++)
| ~~^~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
17 ms |
1004 KB |
Output is correct |
3 |
Correct |
17 ms |
1004 KB |
Output is correct |
4 |
Correct |
1 ms |
364 KB |
Output is correct |
5 |
Correct |
1 ms |
364 KB |
Output is correct |
6 |
Correct |
1 ms |
492 KB |
Output is correct |
7 |
Correct |
1 ms |
364 KB |
Output is correct |
8 |
Correct |
1 ms |
364 KB |
Output is correct |
9 |
Correct |
1 ms |
364 KB |
Output is correct |
10 |
Correct |
1 ms |
364 KB |
Output is correct |
11 |
Correct |
1 ms |
364 KB |
Output is correct |
12 |
Correct |
1 ms |
384 KB |
Output is correct |
13 |
Correct |
1 ms |
364 KB |
Output is correct |
14 |
Correct |
1 ms |
364 KB |
Output is correct |
15 |
Correct |
1 ms |
364 KB |
Output is correct |
16 |
Correct |
17 ms |
1004 KB |
Output is correct |
17 |
Correct |
184 ms |
5796 KB |
Output is correct |
18 |
Incorrect |
0 ms |
364 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Correct |
1 ms |
364 KB |
Output is correct |
5 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
2 ms |
364 KB |
Output is correct |
3 |
Correct |
2 ms |
364 KB |
Output is correct |
4 |
Correct |
2 ms |
364 KB |
Output is correct |
5 |
Correct |
1105 ms |
17616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
364 KB |
Output is correct |
2 |
Correct |
1662 ms |
18036 KB |
Output is correct |
3 |
Correct |
1719 ms |
18120 KB |
Output is correct |
4 |
Correct |
1641 ms |
18240 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
364 KB |
Output is correct |
2 |
Correct |
1662 ms |
18036 KB |
Output is correct |
3 |
Correct |
1719 ms |
18120 KB |
Output is correct |
4 |
Correct |
1641 ms |
18240 KB |
Output is correct |
5 |
Correct |
1 ms |
364 KB |
Output is correct |
6 |
Correct |
1671 ms |
18120 KB |
Output is correct |
7 |
Correct |
1670 ms |
18120 KB |
Output is correct |
8 |
Correct |
1670 ms |
18144 KB |
Output is correct |
9 |
Correct |
1818 ms |
18120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
364 KB |
Output is correct |
2 |
Correct |
1662 ms |
18036 KB |
Output is correct |
3 |
Correct |
1719 ms |
18120 KB |
Output is correct |
4 |
Correct |
1641 ms |
18240 KB |
Output is correct |
5 |
Correct |
1 ms |
364 KB |
Output is correct |
6 |
Correct |
176 ms |
5744 KB |
Output is correct |
7 |
Correct |
182 ms |
5756 KB |
Output is correct |
8 |
Correct |
161 ms |
5880 KB |
Output is correct |
9 |
Correct |
163 ms |
5724 KB |
Output is correct |
10 |
Correct |
161 ms |
5724 KB |
Output is correct |
11 |
Correct |
164 ms |
5724 KB |
Output is correct |
12 |
Correct |
168 ms |
5856 KB |
Output is correct |
13 |
Correct |
188 ms |
5724 KB |
Output is correct |
14 |
Correct |
161 ms |
5724 KB |
Output is correct |
15 |
Correct |
179 ms |
5724 KB |
Output is correct |
16 |
Correct |
176 ms |
5740 KB |
Output is correct |
17 |
Correct |
167 ms |
5872 KB |
Output is correct |
18 |
Correct |
1663 ms |
18248 KB |
Output is correct |
19 |
Correct |
1634 ms |
18120 KB |
Output is correct |
20 |
Correct |
1822 ms |
18272 KB |
Output is correct |
21 |
Correct |
181 ms |
5852 KB |
Output is correct |
22 |
Correct |
156 ms |
5724 KB |
Output is correct |
23 |
Correct |
492 ms |
13268 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
174 ms |
5724 KB |
Output is correct |
3 |
Correct |
174 ms |
5872 KB |
Output is correct |
4 |
Correct |
1846 ms |
18408 KB |
Output is correct |
5 |
Correct |
177 ms |
5692 KB |
Output is correct |
6 |
Correct |
190 ms |
5664 KB |
Output is correct |
7 |
Correct |
179 ms |
5724 KB |
Output is correct |
8 |
Correct |
177 ms |
5724 KB |
Output is correct |
9 |
Correct |
203 ms |
5724 KB |
Output is correct |
10 |
Correct |
179 ms |
5724 KB |
Output is correct |
11 |
Correct |
174 ms |
5852 KB |
Output is correct |
12 |
Correct |
163 ms |
5724 KB |
Output is correct |
13 |
Correct |
183 ms |
5724 KB |
Output is correct |
14 |
Correct |
1824 ms |
18288 KB |
Output is correct |
15 |
Correct |
183 ms |
5724 KB |
Output is correct |
16 |
Correct |
1615 ms |
18588 KB |
Output is correct |
17 |
Correct |
1637 ms |
18404 KB |
Output is correct |
18 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
17 ms |
1004 KB |
Output is correct |
3 |
Correct |
17 ms |
1004 KB |
Output is correct |
4 |
Correct |
1 ms |
364 KB |
Output is correct |
5 |
Correct |
1 ms |
364 KB |
Output is correct |
6 |
Correct |
1 ms |
492 KB |
Output is correct |
7 |
Correct |
1 ms |
364 KB |
Output is correct |
8 |
Correct |
1 ms |
364 KB |
Output is correct |
9 |
Correct |
1 ms |
364 KB |
Output is correct |
10 |
Correct |
1 ms |
364 KB |
Output is correct |
11 |
Correct |
1 ms |
364 KB |
Output is correct |
12 |
Correct |
1 ms |
384 KB |
Output is correct |
13 |
Correct |
1 ms |
364 KB |
Output is correct |
14 |
Correct |
1 ms |
364 KB |
Output is correct |
15 |
Correct |
1 ms |
364 KB |
Output is correct |
16 |
Correct |
17 ms |
1004 KB |
Output is correct |
17 |
Correct |
184 ms |
5796 KB |
Output is correct |
18 |
Incorrect |
0 ms |
364 KB |
Output isn't correct |