티스토리 뷰
728x90
풀이 및 소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
import java.util.stream.IntStream;
public class Solution {
static int n;
static int[][] arr;
static int[] select;
static int min;
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
StringBuilder sb = new StringBuilder();
int t = Integer.parseInt(br.readLine());
for(int tc=1;tc<=t;tc++) {
min = Integer.MAX_VALUE;
n = Integer.parseInt(br.readLine());
arr = new int[n][n];
for(int i=0;i<n;i++) { //arr입력받기
st = new StringTokenizer(br.readLine());
for(int j=0;j<n;j++) {
arr[i][j]=Integer.parseInt(st.nextToken());
}
}
select = new int[n/2];
select_ing(0, 0);
sb.append("#").append(tc).append(" ").append(min).append("\n");
}
System.out.println(sb);
}
public static void select_ing(int cnt, int start) { //n/2개씩 조합 생성하는 메소드
if(cnt == n/2) {
making_food();
return;
}
for(int i=start;i<n;i++) {
select[cnt] = i;
select_ing(cnt+1, i+1);
}
}
public static void making_food() { //요리 만들기
int[] nonselect = new int[n/2];
int cnt = 0;
for(int i=0;i<n;i++ ) { //선택되지 않은 배열
int num = i;
if(!IntStream.of(select).anyMatch(x-> x == num)) {
nonselect[cnt] = i;
cnt++;
if(cnt == n/2) break;
}
}
int sel =0, non_sel=0;
for(int i=0;i<n/2;i++) {
for(int j=i;j<n/2;j++) {
sel += arr[select[i]][select[j]];
sel += arr[select[j]][select[i]];
non_sel += arr[nonselect[i]][nonselect[j]];
non_sel += arr[nonselect[j]][nonselect[i]];
}
}
int res = Math.abs(sel-non_sel);
min = Math.min(min, res);
}
}
반응형
'Coding - Algo > Java' 카테고리의 다른 글
[백준] 11047번:동전 0 (Java 자바) (0) | 2021.08.18 |
---|---|
[백준] 1992번:쿼드트리 (Java 자바) (0) | 2021.08.18 |
[SWEA] 무선충전 (Java 자바) (0) | 2021.08.18 |
[정올] 1828번:냉장고 (Java 자바) (0) | 2021.08.17 |
[백준] 16395번:파스칼의 삼각형 (Java 자바) (0) | 2021.08.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프로그래머스 자바
- 파이썬
- swea 1240
- 백준파이썬
- ubuntu
- 프로그래머스 더 맵게
- 삼성청년SW아카데미
- 메뉴리뉴얼 풀이
- 백준 풀이
- union-find
- 1699 자바
- 백준 dp 문제
- poker swea
- 타일링 자바
- 프로그래머스
- 백준 17144
- SWEA
- SSAFY
- 백준
- swea 4070 타일링
- 파이썬 풀이
- yoloV3
- 1240 자바
- 프로그래머스 파이썬
- swea 타일링
- swea 타일링 자바
- 더 맵게
- 우분투
- swea 1240 자바
- 3996 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함