#include <bits/stdc++.h>
#define N 21
#define M ((1<<20) + 100)
using namespace std;
typedef long long ll;
int n, v[N], qtd[N][5];
ll dp[N][M], pot[45];
bool equal(int a, int b)
{
return (qtd[a][2] == qtd[b][2] || qtd[a][3] == qtd[b][3]);
}
vector<int> grafo[N];
int ternary(int x)
{
int cnt = 0;
for(int log3 = 30; log3 >= 0; log3 --)
{
ll aux = pot[log3], qaux = 0;
if(x >= aux)
{
x -= aux;
qaux ++;
}
if(x >= aux)
{
x -= aux;
qaux ++;
}
cnt = cnt + (qaux == 1);
}
return cnt;
}
ll solve(int x, int mask)
{
if(dp[x][mask] != -1) return dp[x][mask];
if(mask == (1<<n) - 1) return 1;
dp[x][mask] = 0;
for(auto v: grafo[x])
{
if(mask & (1<<v)) continue;
if(equal(x, v)) dp[x][mask] += solve(v, mask | (1<<v));
}
return dp[x][mask];
}
int main()
{
ios::sync_with_stdio(false); cin.tie(0);
cin>>n;
for(int i = 0; i < n; i++) cin>>v[i];
pot[0] = 1;
for(int i = 1; i < 45; i++) pot[i] = pot[i - 1]*3;
for(int i = 0; i < n; i++)
{
qtd[i][2] = __builtin_popcount (v[i]);
qtd[i][3] = ternary(v[i]);
}
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
if(equal(i, j)) grafo[i].push_back(j);
memset(dp, -1, sizeof dp);
ll best = 0;
for(int i = 0; i < n; i++) best += solve(i, 1<<i);
cout<<best<<"\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
124 ms |
172792 KB |
Output is correct |
2 |
Correct |
125 ms |
172792 KB |
Output is correct |
3 |
Correct |
122 ms |
172844 KB |
Output is correct |
4 |
Correct |
123 ms |
172844 KB |
Output is correct |
5 |
Correct |
123 ms |
172896 KB |
Output is correct |
6 |
Correct |
123 ms |
172912 KB |
Output is correct |
7 |
Correct |
122 ms |
172912 KB |
Output is correct |
8 |
Correct |
130 ms |
172972 KB |
Output is correct |
9 |
Correct |
126 ms |
172972 KB |
Output is correct |
10 |
Correct |
124 ms |
173024 KB |
Output is correct |
11 |
Correct |
133 ms |
173024 KB |
Output is correct |
12 |
Correct |
138 ms |
173084 KB |
Output is correct |
13 |
Correct |
198 ms |
173084 KB |
Output is correct |
14 |
Correct |
504 ms |
173084 KB |
Output is correct |
15 |
Correct |
631 ms |
173084 KB |
Output is correct |
16 |
Correct |
424 ms |
173084 KB |
Output is correct |
17 |
Correct |
576 ms |
173084 KB |
Output is correct |
18 |
Correct |
357 ms |
173096 KB |
Output is correct |
19 |
Correct |
2910 ms |
173096 KB |
Output is correct |
20 |
Execution timed out |
3037 ms |
173096 KB |
Time limit exceeded |