#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;
}
};
bool visited[500005];
bool visited2[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;
}
}
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 = 0; i < F; i++) cout << fish[i].first << " " << fish[i].second << '\n';
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 = F - 1; i >= 0; i--) {
while (pos > 0 && fish[pos-1].first > fish[i].first/2) {
visited2[fish[pos-1].second] = true;
seg.upd(1, K, 1, fish[pos-1].second, -1);
pos--;
}
if (visited[fish[i].second]) continue;
visited[fish[i].second] = true;
ans += seg.query(1, K, 1, fish[i].second, K);
if (!visited2[fish[i].second]) {
ans += seg.query(1, K, 1, 1, fish[i].second-1) * seg.query(1, K, 1, fish[i].second+1, K) % M;
ans -= seg.query(1, K, 1, fish[i].second+1, K);
}
ans = (ans % M + M) % M;
cout << fish[i].second << ": " << ans << '\n';
}
assert(0 <= ans && ans < M);
cout << ans << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
85 ms |
5960 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
160 ms |
9260 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
221 ms |
14512 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
126 ms |
9624 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
230 ms |
14692 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
254 ms |
17124 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
228 ms |
15948 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
309 ms |
24564 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
314 ms |
22380 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
385 ms |
28200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |