# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
20905 | 2017-03-13T06:12:18 Z | jjwdi0 | 아름다운 순열 (IZhO12_beauty) | C++11 | 2249 ms | 165860 KB |
#include <bits/stdc++.h> #define pcnt __builtin_popcount using namespace std; typedef long long ll; ll D[1<<20][20]; int N, A[22], B[22], C[22]; int f(int x) { if(x <= 2) return x == 1; return (x % 3 == 1) + f(x / 3); } ll dp(int state, int x) { if(~D[state][x]) return D[state][x]; D[state][x] = 0; if(pcnt(state) == 1) return D[state][x] = !!(state & (1 << x)); for(int i=0; i<N; i++) { if(x == i || !((1 << i) & state)) continue; if((state & (1 << i)) && (B[x] == B[i] || C[x] == C[i])) D[state][x] += dp(state ^ (1 << x), i); } return D[state][x]; } int main() { scanf("%d", &N); for(int i=0; i<N; i++) scanf("%d", A+i); for(int i=0; i<N; i++) B[i] = pcnt(A[i]); for(int i=0; i<N; i++) C[i] = f(A[i]); memset(D, -1, sizeof(D)); ll ans = 0LL; for(int i=0; i<N; i++) ans += dp((1 << N) - 1, i); printf("%lld\n", ans); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 9 ms | 165860 KB | Output is correct |
2 | Correct | 6 ms | 165860 KB | Output is correct |
3 | Correct | 0 ms | 165860 KB | Output is correct |
4 | Correct | 13 ms | 165860 KB | Output is correct |
5 | Correct | 16 ms | 165860 KB | Output is correct |
6 | Correct | 23 ms | 165860 KB | Output is correct |
7 | Correct | 6 ms | 165860 KB | Output is correct |
8 | Correct | 16 ms | 165860 KB | Output is correct |
9 | Correct | 3 ms | 165860 KB | Output is correct |
10 | Correct | 26 ms | 165860 KB | Output is correct |
11 | Correct | 16 ms | 165860 KB | Output is correct |
12 | Correct | 13 ms | 165860 KB | Output is correct |
13 | Correct | 73 ms | 165860 KB | Output is correct |
14 | Correct | 356 ms | 165860 KB | Output is correct |
15 | Correct | 383 ms | 165860 KB | Output is correct |
16 | Correct | 296 ms | 165860 KB | Output is correct |
17 | Correct | 403 ms | 165860 KB | Output is correct |
18 | Correct | 263 ms | 165860 KB | Output is correct |
19 | Correct | 2183 ms | 165860 KB | Output is correct |
20 | Correct | 2249 ms | 165860 KB | Output is correct |