[SWEA] 4012 요리사

Time Lapse :24min 44sec

4012.c

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <stdio.h>
#include <memory.h>
#define gc() getchar_unlocked()
int N;
int table[16][16];
int dp[1<<16];
int ans = 987654321;
int fRI() {
int N = gc(), ret = 0;
for (; N < 48 || N>57; N = gc());
do {
ret = (ret << 3) + (ret << 1) + (N & 0b1111); N = gc();
} while ('0' <= N && N <= '9');
return ret;
}
int getvalue(int choose){
int ret = 0;
for(int i = 0; i < N; ++i)
for(int j = 0;j < N; ++j)
if((choose&(1<<i)) && (choose&(1<<j))) {ret += table[i][j];}
return ret;
}
int abs(int n){
return n > 0 ? n : -n;
}
void DFS(int choose, int cnt, int cur){
if(cnt==(N>>1)){
if(dp[choose]) return;
dp[choose] = dp[((1<<N)-1)^choose] = 1;
int val = abs(getvalue(choose)-getvalue(((1<<N)-1)^choose));
ans = ans > val ? val : ans;
return;
}
if(cur==N) return;
DFS(choose+(1<<cur),cnt+1,cur+1);
DFS(choose,cnt,cur+1);
}
int main(int argc, char** argv){
int tc = 1, T = fRI();
while(T--){
memset(dp,0,sizeof(int)*(1<<N));
N = fRI();
for(int i = 0; i < N; ++i)
for(int j = 0; j < N; ++j)
table[i][j] = fRI();
ans = 987654321;
DFS(0,0,0);
printf("#%d %d\n",tc++,ans);
}
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/08/04/PS/SWEA/4012/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.