# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
382262 | knightron0 | Beautiful row (IZhO12_beauty) | C++14 | 1138 ms | 180960 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fr first
#define sc second
#define clr(a, x) memset(a, x, sizeof(a))
#define dbg(x) cout<<"("<<#x<<"): "<<x<<endl;
#define printvector(arr) for (auto it = arr.begin(); it != arr.end(); ++it) cout<<*it<<" "; cout<<endl;
#define all(v) v.begin(), v.end()
#define lcm(a, b) (a * b)/__gcd(a, b)
#define int long long int
#define printvecpairs(vec) for(auto it: vec) cout<<it.fr<<' '<<it.sc<<endl;
#define endl '\n'
#define float long double
const int MOD = 1e9 + 7;
const int INF = 2e15;
const int MAXN = 25;
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif
int n;
cin>>n;
int a[n], b[n], t[n];
for(int i= 0;i<n;i++){
b[i] = 0;
t[i] = 0;
cin>>a[i];
int x = a[i];
while(x){
t[i] += ((x%3)==1);
x /= 3;
}
x = a[i];
while(x){
b[i] += ((x%2)==1);
x /= 2;
}
}
int dp[n+2][(1<<n)+2];
// for(int mask = 0;mask<(1<<n);mask++){
// for(int i= 0;i<=n;i++){
// dp[i][mask] = 0;
// }
// }
clr(dp, 0);
for(int i = 0;i<n;i++) {
dp[i][(1<<i)] = 1;
}
for(int mask = 0;mask<(1<<n);mask++){
for(int i= 0;i<n;i++){
if(!(mask & (1<<i))) continue;
for(int j= 0;j<n;j++){
if(!(mask & (1<<j)) || (i == j)) continue;
if(b[i] == b[j] || t[i] == t[j]){
dp[i][mask] += dp[j][mask^(1<<i)];
}
}
}
}
int ans = 0;
for(int i= 0;i<n;i++){
ans += dp[i][(1<<n)-1];
}
cout<<ans<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |