# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
49861 | mra2322001 | 아름다운 순열 (IZhO12_beauty) | C++14 | 3059 ms | 173196 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |