//#pragma optimize ("g",on)
//#pragma GCC optimize ("unroll-loops")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#define int long long
#define ll long long
#define db double
#define ld long double
#define pb push_back
#define pf push_front
#define ppb pop_back()
#define ppf pop_front()
#define len(x) (int)x.size()
#define vi vector<int>
#define vpii vector<pair<int,int>>
#define vvi vector<vi>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define mii map<int,int>
#define y1 u_will_not_notice_this15
#define hash u_will_not_notice_this
#define tm (tl+tr>>1)
#define ls v<<1,tl,tm
#define rs v<<1|1,tm+1,tr
#define pii pair<int,int>
#define lb lower_bound
#define ub upper_bound
#define f first
#define s second
#define ordered_set tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update>
#define str string
#define ins insert
#define elif else if
using namespace std;
using namespace __gnu_pbds;
const int maxn=1e6+1020,mod=1e9+7,inf=1e18+6,bir=1,nol=0;
const bool TEST=0;
const str tch="+abcdefghijklmnopqrstuvwxyz",Tch="+ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const str Monday_14_10_24[5]={"NO\n","YES\n","-1\n","0\n","1\n"};
void at(int ok){cout<<Monday_14_10_24[ok];}
bool bit(int mask,int i){return ((bir<<i)&mask);}
int gcd(int a,int b){while(b){if(a>b) swap(a,b);b%=a;}return a;}
int lcm(int a,int b){return a/gcd(a,b)*b;}
int rnd(){return (rand()<<15)^rand();}
int bpm(int a,int b){a%=mod;if(b==0) return 1;if(b&1)return bpm(a,b-1)*a%mod;int x=bpm(a,b>>1);return x*x%mod;}
int bp(int a,int b){if(b==0) return 1;if(b&1)return bp(a,b-1)*a;int x=bp(a,b>>1);return x*x;}
//CODE STARTS HERE:
//don't get stuck on one aproach
int n,a,b,l[maxn],r[maxn],lcc,timer=1,t[53*maxn],lv[53*maxn],rv[53*maxn];
void upd(int l,int r,int v=1,int tl=1,int tr=lcc+20){
if(t[v]==tr-tl+1)return;
if(l>tr||tl>r)return;
if(l<=tl&&tr<=r){
t[v]=tr-tl+1;return;
}
if(!(l>tm||tl>r)){
if(!lv[v])lv[v]=++timer;
upd(l,r,lv[v],tl,tm);
}
if(!(l>tr||tm+1>r)){
if(!rv[v])rv[v]=++timer;
upd(l,r,rv[v],tm+1,tr);
}
t[v]=t[lv[v]]+t[rv[v]];
}
void updq(int l,int r){
upd(l+1,r+1);
}
void whyareucopying(){
cin>>n>>a>>b;
int s=0;
for(int i=1;i<=n;i++)cin>>l[i]>>r[i],s+=r[i]-l[i]+1;
if(a/gcd(a,b+1)>inf/b){
cout<<s<<'\n';return;
}
lcc=a/gcd(a,b+1)*b;
for(int i=1;i<=n;i++){
if(r[i]-l[i]+1>=lcc){
cout<<lcc<<'\n';return;
}
if(l[i]%lcc<=r[i]%lcc)updq(l[i]%lcc,r[i]%lcc);
else updq(l[i]%lcc,lcc-1),updq(0,r[i]%lcc);
}
cout<<t[1]<<'\n';
}
signed main(){
// freopen("txt.in","r",stdin),freopen("txt.out","w",stdout);
ios_base::sync_with_stdio(0),cin.tie(0);
srand(time(0));
int T=1;
if(TEST)cin>>T;
for(int i=1;i<=T;i++){
// cout<<"Case "<<i<<": ";
whyareucopying();
}
}
Compilation message
strange_device.cpp: In function 'void upd(long long int, long long int, long long int, long long int, long long int)':
strange_device.cpp:22:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | #define tm (tl+tr>>1)
| ~~^~~
strange_device.cpp:56:9: note: in expansion of macro 'tm'
56 | if(!(l>tm||tl>r)){
| ^~
strange_device.cpp:22:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | #define tm (tl+tr>>1)
| ~~^~~
strange_device.cpp:58:20: note: in expansion of macro 'tm'
58 | upd(l,r,lv[v],tl,tm);
| ^~
strange_device.cpp:22:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | #define tm (tl+tr>>1)
| ~~^~~
strange_device.cpp:60:13: note: in expansion of macro 'tm'
60 | if(!(l>tr||tm+1>r)){
| ^~
strange_device.cpp:22:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | #define tm (tl+tr>>1)
| ~~^~~
strange_device.cpp:62:17: note: in expansion of macro 'tm'
62 | upd(l,r,rv[v],tm+1,tr);
| ^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
6 ms |
6372 KB |
Output is correct |
3 |
Correct |
6 ms |
6748 KB |
Output is correct |
4 |
Correct |
1 ms |
4432 KB |
Output is correct |
5 |
Correct |
1 ms |
4432 KB |
Output is correct |
6 |
Correct |
1 ms |
4432 KB |
Output is correct |
7 |
Correct |
1 ms |
4432 KB |
Output is correct |
8 |
Correct |
1 ms |
4432 KB |
Output is correct |
9 |
Correct |
1 ms |
4432 KB |
Output is correct |
10 |
Correct |
1 ms |
4432 KB |
Output is correct |
11 |
Correct |
1 ms |
4432 KB |
Output is correct |
12 |
Correct |
1 ms |
4432 KB |
Output is correct |
13 |
Correct |
1 ms |
4432 KB |
Output is correct |
14 |
Correct |
1 ms |
4432 KB |
Output is correct |
15 |
Correct |
1 ms |
4432 KB |
Output is correct |
16 |
Correct |
5 ms |
6224 KB |
Output is correct |
17 |
Correct |
35 ms |
11224 KB |
Output is correct |
18 |
Correct |
1 ms |
4432 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
1 ms |
4432 KB |
Output is correct |
4 |
Correct |
1 ms |
4432 KB |
Output is correct |
5 |
Correct |
1 ms |
4432 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4604 KB |
Output is correct |
2 |
Correct |
2 ms |
4944 KB |
Output is correct |
3 |
Correct |
2 ms |
4944 KB |
Output is correct |
4 |
Correct |
2 ms |
4944 KB |
Output is correct |
5 |
Correct |
267 ms |
16096 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
386 ms |
63048 KB |
Output is correct |
3 |
Runtime error |
892 ms |
524288 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
386 ms |
63048 KB |
Output is correct |
3 |
Runtime error |
892 ms |
524288 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
386 ms |
63048 KB |
Output is correct |
3 |
Runtime error |
892 ms |
524288 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
70 ms |
37596 KB |
Output is correct |
3 |
Correct |
122 ms |
80200 KB |
Output is correct |
4 |
Runtime error |
866 ms |
524288 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
6 ms |
6372 KB |
Output is correct |
3 |
Correct |
6 ms |
6748 KB |
Output is correct |
4 |
Correct |
1 ms |
4432 KB |
Output is correct |
5 |
Correct |
1 ms |
4432 KB |
Output is correct |
6 |
Correct |
1 ms |
4432 KB |
Output is correct |
7 |
Correct |
1 ms |
4432 KB |
Output is correct |
8 |
Correct |
1 ms |
4432 KB |
Output is correct |
9 |
Correct |
1 ms |
4432 KB |
Output is correct |
10 |
Correct |
1 ms |
4432 KB |
Output is correct |
11 |
Correct |
1 ms |
4432 KB |
Output is correct |
12 |
Correct |
1 ms |
4432 KB |
Output is correct |
13 |
Correct |
1 ms |
4432 KB |
Output is correct |
14 |
Correct |
1 ms |
4432 KB |
Output is correct |
15 |
Correct |
1 ms |
4432 KB |
Output is correct |
16 |
Correct |
5 ms |
6224 KB |
Output is correct |
17 |
Correct |
35 ms |
11224 KB |
Output is correct |
18 |
Correct |
1 ms |
4432 KB |
Output is correct |
19 |
Correct |
1 ms |
4432 KB |
Output is correct |
20 |
Correct |
1 ms |
4432 KB |
Output is correct |
21 |
Correct |
1 ms |
4432 KB |
Output is correct |
22 |
Correct |
1 ms |
4432 KB |
Output is correct |
23 |
Correct |
1 ms |
4432 KB |
Output is correct |
24 |
Correct |
1 ms |
4604 KB |
Output is correct |
25 |
Correct |
2 ms |
4944 KB |
Output is correct |
26 |
Correct |
2 ms |
4944 KB |
Output is correct |
27 |
Correct |
2 ms |
4944 KB |
Output is correct |
28 |
Correct |
267 ms |
16096 KB |
Output is correct |
29 |
Correct |
1 ms |
4432 KB |
Output is correct |
30 |
Correct |
386 ms |
63048 KB |
Output is correct |
31 |
Runtime error |
892 ms |
524288 KB |
Execution killed with signal 9 |
32 |
Halted |
0 ms |
0 KB |
- |