QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#582505 | #7925. Chayas | qwerasdf | WA | 691ms | 106556kb | C++20 | 1.5kb | 2024-09-22 16:40:46 | 2024-09-22 16:40:47 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const long long MOD = 119<<23|1;
long long final_dp[1<<24];
long long possible_after[1<<24];
long long complement_after[1<<24];
long long ALL_MASK;
int n, m;
int a, b, c;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
ALL_MASK = (1 << n) - 1;
for (int i = 0; i <= ALL_MASK; ++i) {
possible_after[i] = ALL_MASK ^ i;
complement_after[i] = ALL_MASK;
}
for (int i = 0; i < m; ++i) {
cin >> a >> b >> c;
--a; --b; --c;
long long set_mask = (1 << a) | (1 << c);
long long possible_mask = ALL_MASK ^ (1 << b);
possible_after[set_mask] &= possible_mask;
complement_after[set_mask] &= possible_mask;
}
for (int i = 0; i < n; ++i) {
for (int mask = 0; mask < (1 << n); ++mask) {
if (mask & (1 << i)) {
possible_after[mask] &= possible_after[mask ^ (1 << i)];
complement_after[mask] &= complement_after[mask ^ (1 << i)];
}
}
}
final_dp[0] = 1;
for (int mask = 0; mask < (1 << n); ++mask) {
for (int i = 0; i < n; ++i) {
if ((mask & (1 << i)) && (possible_after[mask ^ (1 << i)] & (1 << i)) && (complement_after[ALL_MASK ^ mask] & (1 << i))) {
final_dp[mask] = final_dp[mask] + final_dp[mask ^ (1 << i)] % MOD;
}
}
}
cout << final_dp[ALL_MASK];
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 7732kb
input:
5 4 1 2 4 2 3 5 3 2 4 1 3 2
output:
4
result:
ok single line: '4'
Test #2:
score: 0
Accepted
time: 0ms
memory: 7732kb
input:
4 2 3 1 4 1 4 3
output:
0
result:
ok single line: '0'
Test #3:
score: 0
Accepted
time: 1ms
memory: 7604kb
input:
5 5 3 1 2 2 5 4 5 4 3 3 1 5 1 4 5
output:
2
result:
ok single line: '2'
Test #4:
score: 0
Accepted
time: 1ms
memory: 7796kb
input:
6 6 1 6 3 2 3 4 5 6 4 3 5 1 1 3 4 1 2 4
output:
6
result:
ok single line: '6'
Test #5:
score: 0
Accepted
time: 0ms
memory: 7792kb
input:
7 10 5 1 6 2 4 7 3 1 2 4 5 7 5 2 6 7 3 6 7 4 6 2 5 7 4 3 7 6 2 3
output:
8
result:
ok single line: '8'
Test #6:
score: 0
Accepted
time: 1ms
memory: 7648kb
input:
9 12 8 1 5 6 1 2 4 2 3 2 9 3 1 6 3 7 9 5 4 2 8 3 8 2 6 7 3 4 2 7 3 7 1 7 5 2
output:
28
result:
ok single line: '28'
Test #7:
score: 0
Accepted
time: 1ms
memory: 7748kb
input:
12 15 10 8 7 2 10 9 4 9 3 5 2 6 7 12 10 10 3 5 4 6 10 9 11 1 12 4 6 8 1 3 6 11 2 3 2 11 4 6 1 4 6 11 7 4 5
output:
128
result:
ok single line: '128'
Test #8:
score: 0
Accepted
time: 155ms
memory: 33372kb
input:
20 20 7 16 19 18 14 9 4 5 7 2 20 4 19 13 17 4 8 16 5 2 6 11 17 9 1 15 11 18 10 9 8 12 11 4 1 9 3 11 13 15 18 4 3 9 2 14 4 19 14 3 9 11 6 1 13 14 3 19 11 7
output:
115058708
result:
ok single line: '115058708'
Test #9:
score: 0
Accepted
time: 325ms
memory: 58092kb
input:
21 40 17 7 12 12 11 8 18 19 20 3 12 4 20 5 15 5 16 8 18 11 4 17 5 15 9 20 4 8 2 6 15 14 7 18 13 11 12 9 17 9 1 10 18 2 11 12 17 13 3 21 6 4 15 6 19 2 6 21 8 13 4 1 8 21 4 11 1 2 7 6 10 4 14 5 15 16 14 15 15 7 9 19 12 3 6 11 8 8 9 7 18 6 12 4 19 18 3 21 9 1 2 3 3 5 1 17 1 4 17 16 15 13 10 21 18 13 2 ...
output:
131696
result:
ok single line: '131696'
Test #10:
score: -100
Wrong Answer
time: 691ms
memory: 106556kb
input:
22 25 2 6 17 19 16 10 6 20 4 4 1 16 17 21 11 16 8 5 14 3 12 17 9 4 7 19 17 14 2 18 22 12 19 10 13 19 4 18 12 16 11 20 4 15 13 7 22 12 17 11 2 20 7 19 17 21 2 4 14 5 14 5 6 13 18 20 18 3 11 2 10 3 14 19 17
output:
1186412616
result:
wrong answer 1st lines differ - expected: '188168263', found: '1186412616'