# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
93488 | zubec | 바이오칩 (IZhO12_biochips) | C++14 | 3 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
ll dp[25][(1<<20)+5];
pair<int, int> a[25];
int n;
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
freopen("beautiful.in", "r", stdin);freopen("beautiful.out", "w", stdout);
cin >> n;
for (int i = 0; i < n; i++){
int x;
cin >> x;
int ncp = x;
while(ncp){
a[i].first += (ncp % 2 == 1);
ncp /= 2;
}
ncp = x;
while(ncp){
a[i].second += (ncp % 3 == 1);
ncp /= 3;
}
dp[i][(1<<i)] = 1;
//cout << i << ' ' << a[i].first << ' ' << a[i].second << endl;
}
for (int mask = 1; 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))
continue;
if (!(a[i].first == a[j].first || a[i].second == a[j].second))
continue;
dp[j][mask|(1<<j)] += dp[i][mask];
}
}
}
ll ans = 0;
for (int i = 0; i < n; i++)
ans += dp[i][(1<<n)-1];
cout << ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |