#include <bits/stdc++.h>
#define int long long
using namespace std;
int F, K, M;
pair<int, int> fish[500005]; //(length, color)
struct mulseg
{
vector<int> tree;
mulseg(int n)
{
int sz = 1 << ((int)ceil(log2(n+1))+1);
tree.resize(sz);
}
int init(int s, int e, int node, vector<int> &arr)
{
if (s == e) return tree[node] = arr[s] % M;
return tree[node] = init(s, (s+e)/2, 2*node, arr) * init((s+e)/2+1, e, 2*node+1, arr) % M;
}
void upd(int s, int e, int node, int id, int diff)
{
if (e < id || id < s) return;
if (s == e) {
tree[node] = (tree[node] + diff + M) % M;
return;
}
upd(s, (s+e)/2, 2*node, id, diff);
upd((s+e)/2+1, e, 2*node+1, id, diff);
tree[node] = tree[2*node] * tree[2*node+1] % M;
}
int query(int s, int e, int node, int l, int r)
{
if (l > r) return 1;
if (e < l || r < s) return 1;
if (l <= s && e <= r) return tree[node];
return query(s, (s+e)/2, 2*node, l, r) * query((s+e)/2+1, e, 2*node+1, l, r) % M;
}
};
vector<int> lst[500005];
pair<int, int> x[500005];
signed main()
{
ios::sync_with_stdio(false); cin.tie(0);
cin >> F >> K >> M;
for (int i = 0; i < F; i++) {
cin >> fish[i].first >> fish[i].second;
}
sort(fish, fish + F);
vector<int> trans(1, 0);
vector<bool> vis(K+1);
for (int i = F - 1; i >= 0; i--) {
if (!vis[fish[i].second]) {
trans.push_back(fish[i].second);
vis[fish[i].second] = true;
}
}
fill(x, x + 500005, make_pair(-1, -1));
vector<int> to(K+1);
for (int i = 1; i <= K; i++) to[trans[i]] = i;
for (int i = 0; i < F; i++) fish[i].second = to[fish[i].second];
for (int i = F-1; i >= 0; i--) {
if (x[fish[i].second].second == -1) {
x[fish[i].second] = make_pair(-fish[i].first, i);
}
}
for (int i = 0; i < F; i++) lst[fish[i].second].push_back(fish[i].first);
mulseg seg(K);
vector<int> cnt(K+1);
int fin = fish[F-1].first;
int pos = 0;
while (pos < F && fish[pos].first <= fin/2) pos++;
for (int i = 0; i < pos; i++) cnt[fish[i].second]++;
for (int i = 1; i <= K; i++) cnt[i]++;
seg.init(1, K, 1, cnt);
int ans = 0;
for (int i = 1; i <= K; i++) {
int now = x[i].second;
while (pos > 0 && fish[pos-1].first > fish[now].first/2) {
seg.upd(1, K, 1, fish[pos-1].second, -1);
pos--;
}
int len = 2 * *upper_bound(lst[i].begin(), lst[i].end(), fish[now].first/2);
int pos = upper_bound(x + 1, x + K + 1, make_pair(-len, F)) - x;
ans += (seg.query(1, K, 1, pos, K));
ans %= M;
}
assert(0 <= ans && ans < M);
cout << ans << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
19808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
19796 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
19796 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
19796 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
11 ms |
19924 KB |
Output is correct |
2 |
Incorrect |
12 ms |
19940 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
19796 KB |
Output is correct |
2 |
Incorrect |
139 ms |
32148 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
14 ms |
19924 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
20040 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
70 ms |
25580 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
20052 KB |
Output is correct |
2 |
Incorrect |
13 ms |
20088 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
90 ms |
28648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
173 ms |
33188 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
97 ms |
28620 KB |
Output is correct |
2 |
Incorrect |
154 ms |
33296 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
150 ms |
32928 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
170 ms |
34980 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
139 ms |
32308 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
263 ms |
42044 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
252 ms |
42644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
361 ms |
44872 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |