# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
513590 | amukkalir | Strange Device (APIO19_strange_device) | C++17 | 1112 ms | 70432 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pii pair<int,int>
#define pll pair<ll, ll>
#define fi first
#define se second
#define pb push_back
#define mp make_pair
int n, a, b;
ll gcd(ll a, ll b) {
return b == 0 ? a : gcd(b, a%b);
}
signed main () {
scanf("%d %d %d", &n, &a, &b);
vector<pll> v;
for(int i=0; i<n; i++) {
ll l, r; scanf("%lld %lld", &l, &r);
v.pb(mp(l,r));
}
ll ans = 0;
//if r max < a*b / gcd(a, b+1)
if(v.back().se / b < a / gcd(a, b+1)) {
for(int i=0; i<n; i++) {
ans += v[i].se - v[i].fi + 1;
}
} else {
ll c = a/gcd(a, b+1) * b;
for(int i=0; i<n; i++) {
if(v[i].se % c < v[i].fi % c || v[i].se >= v[i].fi + c) {
v.pb(mp(0, v[i].se % c));
v[i].se = c-1;
}
v[i].fi %= c;
v[i].se %= c;
}
sort(v.begin(), v.end(), [&] (pll a, pll b) {
if(a.fi % c == b.fi % c) return a.se % c < b.se % c;
return a.fi % c < b.fi % c;
});
//for(auto p : v) cout << p.fi << " " << p.se << endl;
for(int i=0; i<v.size(); i++) {
int l = i, r = i;
while(r + 1 < v.size() && v[r+1].fi <= v[r].se) r++;
//cout << " :: " << l << " " << r << endl;
ans += v[r].se - v[l].fi + 1;
i = r;
}
}
printf("%lld", ans);
}
Compilation message (stderr)
# | 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... |