티스토리 뷰

[4012. [모의 SW 역량테스트] 요리사 URL]

https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWIeUtVakTMDFAVH&categoryId=AWIeUtVakTMDFAVH&categoryType=CODE


백준의 스타트와 링크 문제와 100% 같은 문제이다.

2019/03/09 - [알고리즘 문제/백준(BOJ)] - [백준 14889번] 스타트와 링크 (JAVA)


[소스 코드]

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
import java.util.Stack;
import java.util.StringTokenizer;
 
public class Solution {
 
    public static int tCase, N, ans;
    public static int[][] map;
    public static boolean[] selectFood;
    public static int[] dirX = new int[] { 001-1 }; // 동서남북
    public static int[] dirY = new int[] { 1-100 };
    public static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
 
    public static void main(String[] args) throws NumberFormatException, IOException {
 
        tCase = Integer.parseInt(br.readLine());
 
        for (int t = 1; t <= tCase; t++) {
 
            ans = Integer.MAX_VALUE;
            N = Integer.parseInt(br.readLine());
            selectFood = new boolean[N];
            map = new int[N][N];
 
            for (int i = 0; i < N; i++) {
                StringTokenizer st = new StringTokenizer(br.readLine());
                for (int j = 0; j < N; j++) {
                    map[i][j] = Integer.parseInt(st.nextToken());
                }
            }
            dfs(00);
            System.out.println("#" + t + " " + ans);
        }
    }
 
    public static void dfs(int depth, int numOfFood) {
 
        if (depth >= N)
            return;
 
        if (numOfFood == N / 2) {
            List<Integer> A = new ArrayList<>();
            List<Integer> B = new ArrayList<>();
            for (int i = 0; i < N; i++) {
                if (selectFood[i])
                    A.add(i);
                else
                    B.add(i);
            }
            int a = 0, b = 0;
            for (int i = 0; i < A.size() - 1; i++) {
                for (int j = i + 1; j < A.size(); j++) {
                    a += map[A.get(i)][A.get(j)];
                    b += map[B.get(i)][B.get(j)];
                    a += map[A.get(j)][A.get(i)];
                    b += map[B.get(j)][B.get(i)];
                }
            }
            ans = Math.min(ans, Math.abs(a - b));
            return;
        }
 
        selectFood[depth] = true;
        dfs(depth + 1, numOfFood + 1);
 
        selectFood[depth] = false;
        dfs(depth + 1, numOfFood);
 
    }
 
}
 
cs


댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/12   »
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
글 보관함