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;
#define int long long
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n,A,B;
cin >> n >> A >> B;
__int128 modulus = __int128(A/gcd(A,B+1))*__int128(B);
set<__int128> answers;
vector<pair<__int128,bool>> events;
for(int i=1;i<=n;i++){
int tl,tr;cin>>tl>>tr;__int128 l = tl,r=tr;
__int128 block_l = l/modulus;
__int128 block_r = r/modulus;
l%=modulus;
r%=modulus;
if(block_l == block_r){
events.emplace_back(l,false);
events.emplace_back(r+1,true);
} else if(block_l+1 == block_r){
events.emplace_back(l,false);
events.emplace_back(r+1,true);
events.emplace_back(0,false);
events.emplace_back(modulus,true);
} else {
cout << (int)modulus << '\n';
return 0;
}
}
sort(events.begin(), events.end());
__int128 last = -1;
int curractive = 0;
__int128 currans = 0;
for(auto[idx,type]:events){
if(type){
if(--curractive==0){
currans+=idx-last;
}
} else{
if(curractive++==0){
last = idx;
}
}
}
cout << (int)currans << '\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... |