#include<bits/stdc++.h>
using namespace std;
int mod;
struct SegmentTree{
int n;
vector<int> t;
void init(int _n){
n=_n;
t.assign(4*n+1, 1);
}
void update(int k, int l, int r, int pos, int val){
if (l==r){
t[k]+=val;
return;
}
int mid=(l+r)>>1;
if (pos<=mid) update(k<<1, l, mid, pos, val);
else update(k<<1|1, mid+1, r, pos, val);
t[k]=t[k<<1]*t[k<<1|1]%mod;
}
int get(int k, int l, int r, int L, int R){
if (r<L || R<l) return 1;
if (L<=l && r<=R) return t[k];
int mid=(l+r)>>1;
return get(k<<1, l, mid, L, R)*get(k<<1|1, mid+1, r, L, R)%mod;
}
} st;
const int N=5e5+10;
int n, m, mx[N], pos[N], b[N], cnt[N];
vector<int> v[N];
pair<int, int> a[N];
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m >> mod;
for (int i=1; i<=n; ++i) cin >> a[i].first >> a[i].second;
sort(a+1, a+n+1);
for (int i=1; i<=n; ++i) mx[a[i].second]=i, v[a[i].second].push_back(a[i].first);
m=0;
for (int i=1; i<=n; ++i) if (mx[a[i].second]==i){
++m;
pos[a[i].second]=m;
b[m]=a[i].second;
}
st.init(m);
int ans=0;
for (int i=1, j=0; i<=n; ++i){
while (j<n && a[j+1].first*2<=a[i].first){
++j;
st.update(1, 1, m, pos[a[j].second], 1);
++cnt[a[j].second];
}
if (mx[a[i].second]==i){
int p1=1, p2=1;
p1=st.get(1, 1, m, 1, pos[a[i].second]-1);
p2=p1;
int l=pos[a[i].second]+1, r=m;
while (l<=r){
int mid=(l+r)>>1;
int cc=upper_bound(v[a[i].second].begin(), v[a[i].second].end(), a[mx[b[mid]]].first/2)-v[a[i].second].begin();
if (cc<=cnt[a[i].second]) l=mid+1;
else r=mid-1;
}
p2=p2*st.get(1, 1, m, pos[a[i].second]+1, r)%mod;
p1=p1*cnt[a[i].second]%mod;
ans=(ans+p1+p2)%mod;
}
}
cout << ans << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
12124 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12096 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
2 |
Correct |
8 ms |
12124 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
2 |
Correct |
112 ms |
22020 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
12124 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
12120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
16604 KB |
Output is correct |
2 |
Correct |
64 ms |
17268 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
12376 KB |
Output is correct |
2 |
Correct |
7 ms |
12380 KB |
Output is correct |
3 |
Correct |
6 ms |
12380 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
77 ms |
18772 KB |
Output is correct |
2 |
Incorrect |
127 ms |
22136 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
113 ms |
22236 KB |
Output is correct |
2 |
Correct |
124 ms |
23128 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
72 ms |
18772 KB |
Output is correct |
2 |
Correct |
135 ms |
23248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
129 ms |
22116 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
174 ms |
23892 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
127 ms |
22352 KB |
Output is correct |
2 |
Correct |
162 ms |
27800 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
268 ms |
29404 KB |
Output is correct |
2 |
Correct |
193 ms |
26632 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
209 ms |
29336 KB |
Output is correct |
2 |
Correct |
232 ms |
28084 KB |
Output is correct |
3 |
Incorrect |
246 ms |
33228 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
296 ms |
33104 KB |
Output is correct |
2 |
Correct |
361 ms |
51052 KB |
Output is correct |
3 |
Correct |
312 ms |
49760 KB |
Output is correct |
4 |
Correct |
377 ms |
45392 KB |
Output is correct |