Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 원형
- 알고리즘 목차
- 우분투
- 회의실 배정
- mysqld.sock
- 탄막
- 문자열 압축
- 18249
- 그리디알고리즘
- 영상 프레임 추출
- AI Hub
- 윈도우
- 마우스 따라다니기
- 자료구조 목차
- 유니티
- 알고리즘
- 탄막 이동
- c#
- 단어 수학
- MySQL
- 3344
- 백준
- 토글 그룹
- 2020 KAKAO BLIND RECRUITMENT
- 3273
- 걷는건귀찮아
- 탄막 스킬 범위
- 수 만들기
- 강의실2
- SWEA
Archives
- Today
- Total
와이유스토리
[DFS 2번(조합, 단순), 비트마스킹] (CHECK) 백준 17471 게리맨더링 C++ 본문
https://www.acmicpc.net/problem/17471
#include <bits/stdc++.h>
using namespace std;
int n, ans = INT_MAX, visited, graph[11][11];
int connDfs(int bit, int cnt, int u, int val) {
int res = val;
for (int i = 1; i <= n; i++) {
if ((bit & (1 << i)) == 0) continue; // 확인해야 하는 선거구 아닐 때
if ((visited & (1 << i)) == (1 << i)) continue; // 이미 방문한 번호
if (graph[u][i] == 1) { // 인접한 번호
visited |= (1 << i);
res += connDfs(bit, cnt + 1, i, graph[i][i]); // += 사용(매개변수, 리턴값 조심)
}
if (bit == visited) return res; // 모두 방문 완료
}
return res;
}
void check(int bit) {
int a = INT_MAX, b = INT_MAX;
visited = 0;
for (int i = 1; i <= n; i++) {
if ((bit & (1 << i)) == (1 << i)) { // & != &&
visited |= (1 << i); // 방문 표시
a = connDfs(bit, 0, i, graph[i][i]);
break;
}
}
if (bit != visited) return; // 불가능한 경우
visited = 0;
bit = (((1 << (n+1)) - 1) ^ bit) - 1; // 1을 0으로, 0을 1로 반전(-1 : 인덱스 1부터 시작), 괄호 조심
for (int i = 1; i <= n; i++) {
if ((bit & (1 << i)) == (1 << i)) {
visited |= (1 << i);
b = connDfs(bit, 0, i, graph[i][i]);
break;
}
}
if (bit != visited) return; // 불가능한 경우
ans = min(ans, abs(a - b));
}
void divideDfs(int bit, int depth, int cnt) {
if ((cnt > 0 ) && (cnt <= n / 2)) { // 선거구 1개 ~ n/2개까지 확인
check(bit);
}
if (cnt > n / 2) return;
if (depth > n) return;
divideDfs(bit | (1 << depth), depth + 1, cnt + 1); // depth번 선택O
divideDfs(bit, depth + 1, cnt); // depth번 선택X
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n;
memset(graph, 0, sizeof(graph));
for (int i = 1; i <= n; i++) {
cin >> graph[i][i];
}
int m, temp;
for (int i = 1; i <= n; i++) {
cin >> m;
for (int j = 1; j <= m; j++) {
cin >> temp;
graph[i][temp] = 1;
graph[temp][i] = 1;
}
}
divideDfs(0, 1, 0);
if (ans == INT_MAX) ans = -1;
cout << ans;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 중복순열] 프로그래머스 이모티콘 할인행사 C++ (0) | 2023.01.19 |
---|---|
[DFS 순열] 백준 17406 배열 돌리기 4 C++ (0) | 2022.02.05 |
[DFS 단순 반복] 프로그래머스 카카오프렌즈 컬러링북 C++ (0) | 2022.02.04 |
[BFS 반복] 프로그래머스 거리두기 확인하기 C++ (0) | 2022.02.03 |
[DFS 순열] 백준 17281 ⚾(야구) C++ (0) | 2022.02.03 |
Comments