이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0);cin.tie(0);
typedef long long ll;
#define f first
#define s second
#define LOGN 21
const ll MOD = 1e9 + 7;
const ll MAXN = 3e4 + 100;
#define int long long
set<pair<int,int>> st;
void add_seg(int l, int r) {
st.insert({l, r});
}
signed main() {
fast
ll n, A, B, mx = -1;
cin >> n >> A >> B;
if (B < A)
swap(A, B);
if (1e18 / A < B ? 1e18 : A / __gcd(A, B + 1) * B) {
int ans = 0;
for (int i = 0; i < n; i++) {
int l, r;
cin >> l >> r;
add_seg(l, r);
}
for (auto u : st) {
ans += max(0LL, (u.s - max(mx + 1, u.f)) + 1);
mx = max(mx, u.s);
}
cout << ans << "\n";
return 0;
}
A = A / __gcd(A, B+1) * B;
bool control = true;
for (int i = 0; i < n; i++) {
int l, r;
cin >> l >> r;
if (r - l + 1 >= A) {
cout << A << "\n";
control = false;
}
int x = l % A;
int y = r % A;
if (y < x) {
add_seg(x, A-1);
add_seg(0, y);
} else
add_seg(x, y);
}
if (!control)
return 0;
ll ans = 0;
for (auto u : st) {
ans += max(0LL, u.s - max(mx + 1, u.f) + 1);
mx = max(mx, u.s);
}
cout << ans << "\n";
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |