# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
382241 | ritul_kr_singh | 아름다운 순열 (IZhO12_beauty) | C++17 | 1 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define sp << " " <<
#define nl << "\n"
signed main(){
cin.tie(0)->sync_with_stdio(0);
int n, x, y; cin >> n;
int b2[n], b3[n];
for(int i=0; i<n; ++i){
b2[i] = b3[i] = 0;
cin >> x;
y = x;
while(y) b2[i] += (y % 2)==1, y /= 2;
while(x) b3[i] += (x % 3)==1, x /= 3;
}
bool d[n][n];
for(int i=0; i<n; ++i)
for(int j=0; j<n; ++j)
d[i][j] = b2[i]==b2[j] or b2[i]==b3[j] or b3[i]==b2[j] or b3[i]==b3[j];
int ans[1<<n][n];
for(int i=0; i<(1<<n); ++i){
for(int j=0; j<n; ++j){
ans[i][j] = 0;
if(i==(1<<j)) ans[i][j] = 1;
}
for(int j=0; j<n; ++j){
for(int k=j+1; k<n; ++k){
if(!(i&(1<<j)) or !(i&(1<<k)) or j==k) continue;
if(d[j][k]){
ans[i][j] += ans[i^(1<<j)][k];
ans[i][k] += ans[i^(1<<k)][j];
}
}
}
}
cout << accumulate(ans[(1<<n)-1], ans[(1<<n)-1]+n, 0LL);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |