# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
499943 | ac2hu | 아름다운 순열 (IZhO12_beauty) | C++14 | 3099 ms | 288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
bool used[21];
int t2[21],t3[21];
int n;
long long int ans = 0;
void rec(int last, int num){
if(num == n){
used[last] = false;
ans ++;
}
else{
for(int i = 0;i<n;i++){
if(!used[i] && (t2[last] == t2[i] || t3[last] == t3[i])){
used[i] = true;
rec(i,num + 1);
used[i] = false;
}
}
used[last] = false;
}
}
void solve(){
cin >> n;
vector<int> a(n);
for(int i = 0;i<n;i++)cin >> a[i];
for(int i = 0;i<n;i++){
t2[i] = 0;
t3[i] = 0;
int temp =a[i];
while(temp != 0){
if(temp%2 == 1)
t2[i]++;
temp /= 2;
}
temp = a[i];
while(temp != 0){
if(temp%3 == 1)
t3[i]++;
temp /= 3;
}
// cout << t2[i] << " " << t3[i] << "\n";
}
for(int i = 0;i<n;i++){
used[i] = true;
rec(i, 1);
used[i] = false;
}
cout << ans << "\n";
}
signed main(){
iostream::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
int T = 1;
//cin >> T;
while(T--){
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |