#include <bits/stdc++.h>
using namespace std;
class SegmentTree
{
vector<unsigned> t;
size_t l, m;
public:
SegmentTree(size_t _n, size_t _m)
{
l = 1 << (32 - __builtin_clz(_n));
m = _m;
t = vector<unsigned>(2 * l, 1);
}
void increment(size_t i)
{
i += l;
t[i] = (t[i] + 1) % m;
while (i >>= 1)
t[i] = (t[2 * i] * t[2 * i + 1]) % m;
}
unsigned range_prod(size_t i, size_t j)
{
unsigned x = 1;
i += l, j += l;
while (i <= j)
{
if (i & 1)
x = (x * t[i++]) % m;
if (!(j & 1))
x = (x * t[j--]) % m;
i >>= 1;
j >>= 1;
}
return x;
}
};
struct JewelType
{
unsigned g, largest = 0, second_largest = 0;
bool operator<(JewelType const &x) const
{
return largest < x.largest;
}
};
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
size_t n, k, m;
cin >> n >> k >> m;
vector<pair<unsigned, unsigned>> fish(n);
vector<JewelType> types(k);
for (auto &[l, g] : fish)
{
cin >> l >> g;
g--;
if (l >= types[g].largest)
{
types[g].second_largest = types[g].largest;
types[g].largest = l;
}
else if (l > types[g].second_largest)
types[g].second_largest = l;
}
sort(fish.begin(), fish.end());
sort(types.begin(), types.end());
unsigned ans = 0;
SegmentTree tree(k, m);
size_t j = 0;
for (size_t i = 0; i < k; i++)
{
while (j < n && fish[j].first <= types[i].largest)
{
tree.increment(fish[j].second);
j++;
}
auto const &[g, l1, l2] = types[i];
ans = (ans + tree.range_prod(0, i)) % m;
size_t const w =
lower_bound(types.begin(), types.end(), (JewelType){0U, 2 * l2, 0U}) - types.begin();
if (i + 2 <= w)
ans = (ans + tree.range_prod(i + 1, w - 1)) % m;
}
cout << ans << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 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 |
62 ms |
4296 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
109 ms |
6632 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
153 ms |
10336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
109 ms |
7048 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
159 ms |
10368 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
189 ms |
11972 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
164 ms |
10672 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
220 ms |
14764 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
189 ms |
12820 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
260 ms |
16588 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |