[BOJ] 17779 - 게리맨더링 2
주어진 조건을 그대로 옮기기만 하면 되는데.. 그 과정에서 오타가 나서 살짝 헤맸다.
소스코드
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include <iostream>
#include <string.h>
#include <cstring>
#include <string>
#include <math.h>
#include <cmath>
#include <vector>
#include <algorithm>
#include <stack>
#include <limits>
#include <queue>
#include <deque>
#include <functional>
#include <ctype.h>
#include <map>
#include <set>
#include <list>
#define INF 987654321
using namespace std;
typedef long long ll;
typedef pair<int, int> P;
const int dr[4] = { 0,0,1,-1 }, dc[4] = { 1,-1,0,0 };
int n, arr[25][25];
int cal_min(int x, int y, int d1, int d2) {
int ck[25][25] = { 0, };
queue<P> q;
int sum[6] = { 0, };
for (int i = 0; i <= d1; i++) {
if (!ck[x + i][y - i]) {
ck[x + i][y - i] = 5;
sum[5] += arr[x + i][y - i];
}
if (!ck[x + d2 + i][y + d2 - i]) {
ck[x + d2 + i][y + d2 - i] = 5;
sum[5] += arr[x + d2 + i][y + d2 - i];
}
}
for (int i = 0; i <= d2; i++) {
if (!ck[x + i][y + i]) {
ck[x + i][y + i] = 5;
sum[5] += arr[x + i][y + i];
}
if (!ck[x + d1 + i][y - d1 + i]) {
ck[x + d1 + i][y - d1 + i] = 5;
sum[5] += arr[x + d1 + i][y - d1 + i];
}
}
for (int i = 1; i <= n; i++) {
int cnt = 0;
for (int j = 1; j <= n; j++) {
if (ck[i][j]) {
if ((i == x && j == y) || (i == x + d1 + d2 && j == y - d1 + d2)) {
cnt = 2;
}
else cnt++;
continue;
}
int now = 0;
if (cnt == 1) now = 5;
else if (i < x + d1 && j <= y) {
now = 1;
}
else if (i <= x + d2 && j<=n && j>y) {
now = 2;
}
else if (i >= x + d1 && i <= n && j < y - d1 + d2) {
now = 3;
}
else {
now = 4;
}
ck[i][j] = now;
sum[now] += arr[i][j];
}
}
int mn = INF, mx = 0;
for (int i = 1; i <= 5; i++) {
mn = min(sum[i], mn);
mx = max(sum[i], mx);
}
return mx - mn;
}
int choose_d1_d2(int x, int y) {
int rtn = INF;
for (int i = 1; i < y; i++) {
for (int j = 1; j <= n - y; j++) {
if (i + j > n - x) continue;
rtn = min(rtn, cal_min(x, y, i, j));
}
}
return rtn;
}
int go() {
int rtn = INF;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
rtn = min(rtn, choose_d1_d2(i, j));
}
}
return rtn;
}
int main(void) {
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
scanf("%d", arr[i] + j);
}
}
printf("%d", go());
return 0;
}
This post is licensed under CC BY 4.0 by the author.
Comments powered by Disqus.