#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
// freopen ("input", "r", stdin);
int n, k, mod;
cin >> n >> k >> mod;
vector<pair<int, int>> a(n);
vector<bool> deja(k, 0), skip(n, 0);
for (auto &it : a) {
cin >> it.first >> it.second;
it.second--;
}
sort(a.begin(), a.end());
for (int i = n - 1; i >= 0; i--) {
if (!deja[a[i].second]) {
deja[a[i].second] = 1;
} else {
skip[i] = 1;
}
}
vector<vector<int>> frqs;
int limit = 0;
for (int i = 0; i < n; i++) {
if (skip[i]) {
continue;
}
while (limit < n && 2 * a[limit].first <= a[i].first) {
limit++;
}
vector<int> frq(k, 0);
for (int j = 0; j < limit; j++) {
frq[a[j].second]++;
}
frq[a[i].second]++;
frqs.push_back(frq);
}
n = (int) frqs.size();
int print = 0;
for (int mask = 1; mask < (1 << n); mask++) {
vector<int> guys;
for (int i = 0; i < n; i++) {
if (mask & (1 << i)) {
guys.push_back(i);
}
}
vector<int> base = frqs[guys[0]];
for (int j = 1; j < (int) guys.size(); j++) {
for (int i = 0; i < k; i++) {
base[i] = min(base[i], frqs[guys[j]][i]);
}
}
int prod = 1;
for (int i = 0; i < k; i++) {
prod = (ll) prod * (base[i] + 1) % mod;
}
if ((int) guys.size() % 2 == 1) {
print = (print + prod) % mod;
} else {
print = (print - prod + mod) % mod;
}
}
print = (print + mod - 1) % mod;
cout << print << "\n";
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
312 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
19 ms |
324 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
797 ms |
10292 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
482 ms |
392 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3082 ms |
4540 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
16844 KB |
Output is correct |
2 |
Correct |
77 ms |
4288 KB |
Output is correct |
3 |
Incorrect |
17 ms |
11772 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3093 ms |
17068 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3087 ms |
26100 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
765 ms |
65536 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
989 ms |
65540 KB |
Execution killed with signal 9 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
716 ms |
65540 KB |
Execution killed with signal 9 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
267 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
174 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
148 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
186 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |