Submission #49862

#TimeUsernameProblemLanguageResultExecution timeMemory
49862mra2322001Beautiful row (IZhO12_beauty)C++14
0 / 100
3052 ms173040 KiB
#include <bits/stdc++.h> #define f0(i, n) for(int i(0); i<(n); i++) #define f1(i, n) for(int i(1); i<=(n); i++) #define bit(x, y) (((x) >> (y))&1) using namespace std; typedef long long ll; const int N = 21; int n, a[N], t[N], b[N]; ll f[1 << 20][N]; ll calc(int s, int i){ if(f[s][i] != -1) return f[s][i]; if(s == (1 << n) - 1){ f[s][i] = 1; return 1; } ll &ans = f[s][i]; ans = 0; if(__builtin_popcount(s)==n-2){ int h = -1, k = -1; f0(j, n){ if(bit(s, j)==0){ if(h==-1) h = j; else k = j; } } if(t[h + 1] != t[k + 1] && b[h + 1] != b[k + 1]) return 0; } f0(j, n){ if(!bit(s, j)){ if(s > 0){ if(t[i + 1] != t[j + 1] && b[i + 1] != b[j + 1]) continue; ans = ans + calc(s | (1 << j), j); } else if(s==0){ ans = ans + calc(1 << j, j); } } } return ans; } int main(){ ios_base::sync_with_stdio(0); memset(f, -1, sizeof(f)); cin >> n; f1(i, n){ cin >> a[i]; b[i] = __builtin_popcount(a[i]); while(a[i]){ int r = a[i]%3; if(r==1) t[i]++; a[i] /= 3; } } cout << calc(0, 0); }
#Verdict Execution timeMemoryGrader output
Fetching results...