Recent Posts
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
- terminal
- k8s #kubernetes #쿠버네티스
- VARCHAR (1)
- python
- JanusWebRTCGateway
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- Spring Batch
- 달인막창
- kotlin
- table not found
- vfr video
- 깡돼후
- JanusWebRTC
- JanusWebRTCServer
- 코루틴 빌더
- taint
- PytestPluginManager
- 티스토리챌린지
- 코루틴 컨텍스트
- pytest
- tolerated
- mp4fpsmod
- PersistenceContext
- 자원부족
- 겨울 부산
- preemption #
- Value too long for column
- 개성국밥
- 오블완
- JanusGateway
Archives
너와 나의 스토리
[BOJ] 14889 스타트와 링크 본문
반응형
문제: https://www.acmicpc.net/problem/14889
문제 풀이 1: - 재귀
ateam[20], bteam[20]
1~N 번 중 위 두 팀에 속할 선수들을 재귀로 선택
두 팀 모두 인원수가 n/2일 때, 능력치 계산
시간: 20ms
소스 코드:
더보기
#include <iostream>
#include <algorithm>
#include <vector>
#include <string.h>
#include <queue>
#include <cmath>
#include <string>
#define INF 987654321
using namespace std;
int n,arr[21][21],ateam[21],bteam[21],res;
void func(int at,int bt,int cur) {
if (at== n / 2 && bt==n/2) {
int asum = 0, bsum = 0;
for (int i = 1; i < n / 2; i++) {
for (int j = 0; j < i; j++) {
asum += arr[ateam[i]][ateam[j]] + arr[ateam[j]][ateam[i]];
bsum += arr[bteam[i]][bteam[j]] + arr[bteam[j]][bteam[i]];
}
}
res = min(res, abs(asum - bsum));
return;
}
if (at < n / 2) {
ateam[at] = cur;
func(at + 1, bt, cur + 1);
}
if (bt < n / 2) {
bteam[bt] = cur;
func(at, bt + 1, cur + 1);
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> arr[i][j];
}
}
res = INF;
func(0,0,0);
cout << res << '\n';
return 0;
}
문제 풀이 2: - 비트 마스킹
2팀으로 나누는 모든 경우의 수를 구한다 -> $2^N$개
이 중 2팀이 동일한 인원수로 나눠지는 경우에만 연산을 한다. ->calculator() 함수 호출
calculator() 함수에서는 비트가 1인 팀, 0인 팀끼리 각각 능력치의 합을 구해, 이 두 팀의 능력치 차의 최솟값을 결과 변수에 갱신해준다.
시간: 172ms
소스 코드:
더보기
#include <iostream>
#include <algorithm>
#include <vector>
#include <string.h>
#include <queue>
#include <cmath>
#include <string>
#define INF 987654321
using namespace std;
int n,arr[21][21],res;
void calculator(int visit) {
int a=0,b=0;
for (int i = 0; i <n; i++) {
if (visit&(1 << i)) {
for (int j = 0; j < i; j++) {
if (visit&(1 << j)) a += arr[i][j] + arr[j][i];
}
}
else {
for (int j = 0; j < i; j++) {
if (!(visit&(1 << j))) b += arr[i][j] + arr[j][i];
}
}
}
res = min(res, abs(a-b));
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> arr[i][j];
}
}
res = INF;
for (int i = 0; i < pow(2, n); i++) {
// 비트 i에서 1의 개수 찾기
int cnt,tmp = i;
for (cnt = 0; tmp; cnt++) {
tmp &= tmp - 1;
}
if (cnt != n / 2) continue;
calculator(i);
}
cout << res << '\n';
return 0;
}
반응형
'Algorithm > 브루트 포스 (Brute-Force )' 카테고리의 다른 글
[BOJ] 12100번 2048(Easy) (0) | 2020.06.01 |
---|---|
[Programmers] 2019 카카오 개발자 겨울 인턴십 - 문자열 압축 (0) | 2020.05.04 |
(BOJ) 16235 나무 재테크 (0) | 2019.05.10 |
(BOJ) 14476 최대공약수 하나 빼기 (0) | 2019.05.09 |
(BOJ) 17136 색종이 붙이기 (0) | 2019.05.09 |
Comments