#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <queue>
#include <bitset>
#define pb push_back
#define int long long
#define str string
using namespace std;
const int M = 1e9 + 7;
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int n, a, b;
cin >> n >> a >> b;
vector<pair<int, int>> pr(n);
for (int i = 0; i < n; i++) cin >> pr[i].first >> pr[i].second;
int g = gcd(a, b + 1);
a /= g;
int num = a * b;
if (n == 1) {
int l = pr[0].first, r = pr[0].second;
if (r - l >= num - 1) {
cout << (int) num;
} else {
if (l == r) {
cout << 1;
} else {
l %= num;
r %= num;
if (l <= r) {
cout << r - l + 1;
} else {
cout << (r - l + 1) + (int) num;
}
}
}
cout << '\n';
}
vector<pair<int, int>> ev;
for (auto p : pr) {
int l = p.first, r = p.second;
if (r - l >= num - 1) {
cout << (int) num;
return 0;
}
l %= num;
r %= num;
if (r < l) {
ev.pb({l, 1});
ev.pb({num, -1});
ev.pb({0, 1});
ev.pb({r + 1, -1});
} else {
ev.pb({l, 1});
ev.pb({r + 1, -1});
}
}
sort(ev.begin(), ev.end());
int bal = 0;
int last = 0;
int ans = 0;
for (auto p : ev) {
int x = p.first;
int type = p.second;
if (bal) {
ans += (x - last);
}
last = x;
bal += type;
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
428 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
428 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
428 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |