#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define rng(i,x,n) for(int i=x;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define vec(...) vector<__VA_ARGS__>
#define _3HspL4A ios::sync_with_stdio(0),cin.tie(0)
typedef long long ll;
using pii=pair<int,int>;
using vi=vec(int);
void print(){cout<<"\n";}
template<class T,class...E>
void print(const T&v,const E&...u){cout<<v<<' ',print(u...);}
// e
using vp=vec(pii);
signed main(){
_3HspL4A;
int n;
cin>>n;
vp a(n);
rep(i,n){
cin>>a[i].fi>>a[i].se;
}
vi tmp;
rep(i,n){
tmp.pb(a[i].fi);
tmp.pb(a[i].se);
}
sort(tmp.begin(),tmp.end());
tmp.erase(unique(tmp.begin(),tmp.end()),tmp.end());
rep(i,n){
a[i].fi=lower_bound(tmp.begin(),tmp.end(),a[i].fi)-tmp.begin();
a[i].se=lower_bound(tmp.begin(),tmp.end(),a[i].se)-tmp.begin();
}
int q;
cin>>q;
rep(_,q){
int s,t;
cin>>s>>t;
s-=1;
vi cnt(2*n);
rng(j,s,t){
// print(a[j].fi,a[j].se);
cnt[a[j].fi]+=1;
cnt[a[j].se+1]-=1;
}
int now=0,ans=0;
rep(j,2*n){
if(j) cnt[j]+=cnt[j-1];
ans=max(ans,cnt[j]);
}
print(ans);
}
//
return 0;
}
Compilation message
Main.cpp: In function 'int main()':
Main.cpp:53:7: warning: unused variable 'now' [-Wunused-variable]
53 | int now=0,ans=0;
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
118 ms |
4932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
4 ms |
724 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
4 ms |
724 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
212 ms |
5120 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
118 ms |
4932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |