4012 요리사
2019. 8. 9. 13:29ㆍ알고리즘/삼성
0과 1이 각각 반이 있는 vector를 만들고 순열을 돌리면서 차이의 최솟값을 찾는 문제
문제: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWIeUtVakTMDFAVH
깃허브주소: https://github.com/surinoel/boj/blob/master/swea4012.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cmath> | |
#include <vector> | |
#include <iostream> | |
#include <algorithm> | |
using namespace std; | |
int mat[16][16]; | |
int main(void) { | |
ios_base::sync_with_stdio(false); | |
cin.tie(nullptr); | |
int tc; | |
cin >> tc; | |
for (int test_case = 1; test_case <= tc; test_case++) { | |
int n; | |
cin >> n; | |
for (int i = 0; i < n; i++) { | |
for (int j = 0; j < n; j++) { | |
cin >> mat[i][j]; | |
} | |
} | |
vector<int> idx(n, 1); | |
for (int i = 0; i < n / 2; i++) { | |
idx[i] = 0; | |
} | |
int ans = -1; | |
do { | |
vector<int> food1, food2; | |
for (int i = 0; i < n; i++) { | |
if (idx[i] == 0) { | |
food1.push_back(i); | |
} | |
else { | |
food2.push_back(i); | |
} | |
} | |
int sum1 = 0, sum2 = 0; | |
for (int u = 0; u < food1.size(); u++) { | |
for (int v = 0; v < food1.size(); v++) { | |
sum1 += mat[food1[u]][food1[v]]; | |
} | |
} | |
for (int u = 0; u < food2.size(); u++) { | |
for (int v = 0; v < food2.size(); v++) { | |
sum2 += mat[food2[u]][food2[v]]; | |
} | |
} | |
int diff = abs(sum1 - sum2); | |
if (ans == -1 || ans > diff) { | |
ans = diff; | |
} | |
} while (next_permutation(idx.begin(), idx.end())); | |
cout << "#" << test_case << " " << ans << '\n'; | |
} | |
return 0; | |
} |
'알고리즘 > 삼성' 카테고리의 다른 글
삼성 5650 핀볼 게임 (0) | 2019.09.08 |
---|---|
2477 차량 정비소 (0) | 2019.08.09 |
5656 벽돌 깨기 (0) | 2019.08.08 |
4008 숫자 만들기 (0) | 2019.08.08 |
5644 무선 충전 (0) | 2019.08.08 |