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
- 이분탐색
- 후니의 쉽게 쓴 시스코 네트워킹
- 시뮬레이션
- swea
- 그리디
- 플로이드-와샬
- Effective Java
- mst
- Kotlin
- 문자열
- 구현
- 백준
- JUnit 5
- 에라토스테네스의 체
- 유니온 파인드
- 완전탐색
- CS
- 프로그래머스
- 백트래킹
- 세그먼트 트리
- java
- dfs
- 동적계획법
- 위상정렬
- 스택
- 투 포인터
- 알고리즘
- 수학
- Network
- BFS
Archives
반갑습니다!
[백준] 14889 스타트와 링크 본문
풀이
백트래킹 문제이다. 무작위로 팀을 선정해서 전체 인원 수 / 2 만큼의 인원을 고르면 나머지는 B팀으로 생각하고 능력치를 계산해서 최소값을 구하면 된다.
코드
#include <iostream>
#include <algorithm>
using namespace std;
int n, ans = 987654321;
int s[21][21];
bool a[21];
int get_result() {
int sa = 0; int sb = 0;
for(int i=1; i<=n-1; i++)
for (int j = i + 1; j <= n; j++) {
if (a[i] && a[j]) sa += s[i][j] + s[j][i];
if (!a[i] && !a[j]) sb += s[i][j] + s[j][i];
}
return abs(sa - sb);
}
void dfs(int idx, int cnt) {
if (cnt == n / 2) {
ans = min(ans, get_result());
return;
}
// 현재 인덱스 다음부터 선택한다
for (int i = idx + 1; i <= n; i++) {
a[i] = true;
dfs(i, cnt + 1);
a[i] = false;
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) cin >> s[i][j];
dfs(0, 0);
cout << ans << '\n';
return 0;
}
'알고리즘 문제 풀이' 카테고리의 다른 글
[프로그래머스] 타겟 넘버 (0) | 2020.05.07 |
---|---|
[SWEA] 2383 점심 식사시간 (0) | 2020.05.07 |
[백준] 14888 연산자 끼워넣기 (0) | 2020.05.06 |
[프로그래머스] 방금그곡 (0) | 2020.05.06 |
[백준] 2665 미로만들기 (0) | 2020.05.05 |