/**
____ ____ ____ ____ ____
||a |||t |||o |||d |||o ||
||__|||__|||__|||__|||__||
|/__\|/__\|/__\|/__\|/__\|
**/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N_MAX = 102;
const int F_MAX = 4000002;
const int MOD = 1e9+7;
int n, t;
int dp[3 * N_MAX][3 * N_MAX][3 * N_MAX];
bool a[3 * N_MAX], b[3 * N_MAX], c[3 * N_MAX];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> t;
for(int i = 0; i <= 3 * n; i++)
for(int j = 0; j <= 3 * n; j++)
for(int k = 0; k <= 3 * n; k++)
{
if(i == 0 && j == 0 && k == 0)
{
dp[i][j][k] = 1;
continue;
}
for(int x = 1; x <= 3; x++)
for(int y = 1; y <= 3; y++)
for(int z = 1; z <= 3; z++)
{
int i1 = i, j1 = j, k1 = k;
bool ok = false;
int prod = 1;
if(((x == 1) ^ (i1 == 0)) == true)
continue;
if(x == 2)
{
prod *= i1;
i1--;
ok = true;
}
else if(x == 3)
{
prod *= k1;
j1++;
k1--;
}
if(((y == 1) ^ (j1 == 0)) == true)
continue;
if(y == 2)
{
prod *= j1;
j1--;
ok = true;
}
else if(y == 3)
{
prod *= i1;
k1++;
i1--;
}
if(((z == 1) ^ (k1 == 0)) == true)
continue;
if(z == 2)
{
prod *= k1;
k1--;
ok = true;
}
else if(z == 3)
{
prod *= j1;
i1++;
j1--;
}
if(ok == false)
continue;
dp[i][j][k] += 1LL * dp[i1][j1][k1] * prod % MOD;
if(dp[i][j][k] >= MOD)
dp[i][j][k] -= MOD;
}
}
while(t--)
{
for(int i = 1; i <= n * 3; i++)
a[i] = b[i] = c[i] = false;
for(int i = 1; i <= n * 2; i++)
{
int card;
cin >> card;
a[card] = true;
}
for(int i = 1; i <= n * 2; i++)
{
int card;
cin >> card;
b[card] = true;
}
for(int i = 1; i <= n * 2; i++)
{
int card;
cin >> card;
c[card] = true;
}
int I = 0, J = 0, K = 0;
for(int i = 1; i <= n * 3; i++)
I += (a[i] && b[i]);
for(int i = 1; i <= n * 3; i++)
J += (b[i] && c[i]);
for(int i = 1; i <= n * 3; i++)
K += (c[i] && a[i]);
cout << dp[I][J][K] << "\n";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Runtime error |
6 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
3 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
4 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
6 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
7 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
8 |
Runtime error |
7 ms |
500 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
9 |
Runtime error |
7 ms |
492 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
10 |
Runtime error |
7 ms |
620 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |