#include <bits/stdc++.h>
using namespace std;
#define fr first
#define sc second
#define ll long long
const ll mxn=2e5+5,sz=(1<<22);
ll n,vmx,v2,t[mxn],a[mxn],last;
vector<pair<ll,ll>>v;
struct segment{
ll mx[sz],mn[sz],lazy[sz];
void shift(ll id){
for(ll i=0;i<2;i++){
mx[id*2+i]+=lazy[id];
mn[id*2+i]+=lazy[id];
lazy[id*2+i]+=lazy[id];
}
lazy[id]=0;
}
void add(ll id,ll L,ll R,ll l,ll r,ll x){
if(L==l && R==r){
lazy[id]+=x;
mx[id]+=x;
mn[id]+=x;
return ;
}
if(lazy[id])
shift(id);
ll mid=(L+R)/2;
if(l<mid)
add(id*2,L,mid,l,min(r,mid),x);
if(r>mid)
add(id*2+1,mid,R,max(l,mid),r,x);
mx[id]=max(mx[id*2],mx[id*2+1]);
mn[id]=min(mn[id*2],mn[id*2+1]);
}
}seg;
int main(){
cin>>n>>vmx>>v2;
for(ll i=1;i<=n;i++){
char x;
cin>>x>>t[i];
if(x=='+')a[i]=1;
else a[i]=-1;
if(i!=1)seg.add(1,1,n+2,1,i+1,-a[i]);
}
seg.add(1,1,n+2,1,n+2,v2);
for(ll i=n;i>1;i--){
t[i]-=t[i-1];
v.push_back({t[i],i});
}
v.push_back({0,0});
sort(v.begin(),v.end());
ll p=v.back().fr;
while(v.size()){//cout<<seg.mx[1]<<" "<<seg.mn[1]<<endl;
if(v2==vmx)
if(seg.mx[1]<=vmx)break;
else if(v2==0)
if(seg.mn[1]>=0)break;
else if(seg.mx[1]<=vmx && seg.mn[1]>=0)break;
while(v.back().fr==p){
seg.add(1,1,n+2,1,v.back().sc+1,a[v.back().sc]);
v.pop_back();
}
last=p;
p=v.back().fr;
}
if(v.size()==n){
cout<<"infinity";
return 0;
}
cout<<last-1<<" ";
ll l=0,r=vmx+1,y=last-1;
while(r-l>1){
ll mid=(l+r)/2,x=mid;
for(ll i=2;i<=n;i++){
if(y>=t[i]){
x+=a[i];
x=max((ll)0,x);
x=min(x,vmx);
}
}
if(x<=v2)l=mid;
else r=mid;
}
cout<<l;
}
Compilation message
mp3player.cpp: In function 'int main()':
mp3player.cpp:57:10: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
57 | else if(v2==0)
| ^
mp3player.cpp:55:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
55 | if(v2==vmx)
| ^
mp3player.cpp:67:13: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
67 | if(v.size()==n){
| ~~~~~~~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
33 ms |
63052 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
6744 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
6744 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
6748 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
32 ms |
23752 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
33 ms |
24008 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
37 ms |
24264 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
50 ms |
25792 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
105 ms |
30140 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
106 ms |
30176 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |