728x90
https://www.acmicpc.net/problem/17471
조합과 완전탐색을 이용한문제
삼성A형 구현 왤캐 까다롭냐;
내가 푼 알고리즘은
1. 인접정보를 입력받아서 저장
2. 서로 한 선거구가 되는 모든 경우를 DFS를 사용해 조합으로 구해서 두 선거구로 쪼개줌
3. 나눈 구역이 서로 이어져있는지 BFS이용해 확인
4. 모든 조건이 맞을경우 인구차를 계산, 최소값을 매번 갱신해줌
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
|
#include <iostream>
#include <vector>
#include <cstring>
#include <algorithm>
#include <queue>
using namespace std;
int n;
int population[11];
bool check[11];
bool arr[11][11];
bool visit[11];
int answer = 987654321;
bool bfs(vector<int> v, bool t) {
memset(visit, false, sizeof(visit));
visit[v[0]] = true;
queue<int> q;
q.push(v[0]);
int cnt = 1;
while (!q.empty()) {
int x = q.front();
q.pop();
for (int i = 1; i <= n; i++) {
//선거구인지, 연결되어있는지, 방문안했는지
if (check[i] == t && arr[x][i] == true && visit[i] == false) {
visit[i] = true;
q.push(i);
cnt++;
}
}
}
if (v.size() == cnt) return true;
return false;
}
void calculate() {
int agroup = 0;
int bgroup = 0;
for (int i = 1; i <= n; i++) {
if (check[i] == true) agroup += population[i];
else bgroup += population[i];
}
int result = agroup - bgroup;
if (result < 0) result *= (-1);
answer = min(answer, result);
}
// 그룹을 나눠주고구역이 이어져있는지 확인
bool right() {
vector<int> a, b;
for (int i = 1; i <= n; i++) {
if (check[i] == true) a.push_back(i);
else b.push_back(i);
}
//if (a.size() < 1 || b.size() < 1) return false;
//이어져있는지 확인
if (bfs(a, true) != true) return false;
if (bfs(b, false) != true) return false;
return true;
}
void dfs(int x, int cnt) {
if (cnt >= 1) {
//조합이 만들어지면 일단 체크해야함
if (right() == true)
calculate();
}
if (cnt == n - 1)
return;
for (int i = x; i <= n; i++) {
if (check[i] == true) continue;
check[i] = true;
dfs(i, cnt + 1);
check[i] = false;
}
}
int main() {
cin >> n;
for (int i = 1; i <= n; i++)
cin >> population[i];
for (int i = 1; i <= n; i++) {
int cnt;
cin >> cnt;
for (int j = 0; j < cnt; j++) {
int x; cin >> x;
arr[i][x] = true;
arr[x][i] = true;
}
}
dfs(1, 0);
if (answer == 987654321) cout << -1;
else cout << answer;
return 0;
}
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 17135번] 캐슬 디펜스 c++ (0) | 2021.05.18 |
---|---|
[백준 17406번] 배열 돌리기 4 c++ (0) | 2021.05.16 |
[백준 17281번] ⚾(야구) C++ (1) | 2021.05.16 |
[백준 17070번] 파이프 옮기기 1 C++ (0) | 2021.05.14 |
[백준 2156번] 포도주 시식 c++ (0) | 2021.05.13 |