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
- 원판 돌리기
- C/C++ 구현
- ㅣ풀이
- 백준 17471
- 백준
- c#
- 5397
- qorwns
- 시간 복잡도
- Stack 이란
- 스택의 특징
- heap
- 백준 1406
- 1764
- dfs
- 백준 5397
- 자료구조
- 구현
- 해시구현
- 별 찍기 10
- 백준 17779
- 백준 17822
- 해시 구현
- 게리멘더링2
- 백준 1158
- AVL 시간 복잡도
- 버킷 정렬
- 조세퍼스 순열
- 풀이
- 백준 2447
Archives
- Today
- Total
홍시홍의 프로그래밍
[swea 4012] 요리사 본문
분류
dfs
요구사항
요리 조합의 합이 최소로 되게 팀짜기
풀이
1. dfs로 팀을 나눈다
0팀 반, 1팀 반
2. 같은 팀끼리의 합을 구할 수 있도록 한다
#include <iostream>
#include <vector>
#include <algorithm>
#include <math.h>
#include <string.h>
using namespace std;
int n;
int map[20][20];
int visit[20];
int ans = 987654321;
void dfs(int cnt, int now) {
if (now == n) {
if (cnt == n / 2) {
int nowsum[2] = { 0, };
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == j) continue;
if (visit[i] == visit[j]) {
nowsum[visit[i]] += map[i][j];
}
}
}
int diff = abs(nowsum[0] - nowsum[1]);
ans = min(ans, diff);
}
return;
}
visit[now] = 1;
dfs(cnt + 1, now + 1);
visit[now] = 0;
dfs(cnt, now + 1);
}
int main() {
int t;
scanf("%d", &t);
for (int tc = 1; tc <= t; tc++) {
ans = 987654321;
scanf("%d", &n);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
scanf("%d", &map[i][j]);
}
}
dfs(0, 0);
printf("#%d %d\n", tc, ans);
}
}
'알고리즘 문제풀이 > swea' 카테고리의 다른 글
[swea 2477] 차량 정비소 (0) | 2020.06.05 |
---|---|
[swea 2115] 벌꿀 채취 (0) | 2020.06.05 |
[swea 1949] 등산로 조성 (0) | 2020.04.25 |
[swea 1953] 탈주범 검거 (0) | 2020.04.25 |
[swea 5650] 핀볼 게임 (0) | 2020.04.24 |
Comments