티스토리 뷰

[백준 14889번 스타트와 링크 URL]



1. N명을 반으로 나눠 한 팀은 스타트 팀, 나머지 한 팀은 링크 팀으로 나눈다.

2. 팀을 나눌 때에는 DFS를 활용해서 모든 경우의 수를 구한다.

2. 팀을 나눴다면, 조건에 의한 팀의 능력치를 계산한다.


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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
import java.util.StringTokenizer;
 
public class Main {
 
    public static int N, ans = Integer.MAX_VALUE;
    public static int[][] map;
    public static boolean[] team;
    public static int[] dirX = new int[] { 00-11 };
    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 Exception {
 
        StringTokenizer st = new StringTokenizer(br.readLine());
        N = Integer.parseInt(st.nextToken());
 
        map = new int[N][N];
        team = new boolean[N + 1];
 
        for (int i = 0; i < N; i++) {
            st = new StringTokenizer(br.readLine());
            for (int j = 0; j < N; j++) {
                map[i][j] = Integer.parseInt(st.nextToken());
            }
        }
        dfs(00);
        System.out.println(ans);
    }
 
    public static void dfs(int depth, int numOfPerson) {
 
        if (depth > N)
            return;
 
        if (numOfPerson == N / 2) {
 
            List<Integer> start = new ArrayList<>();
            List<Integer> link = new ArrayList<>();
 
            for (int i = 0; i < N; i++) {
                if (team[i]) {
                    start.add(i);
                } else {
                    link.add(i);
                }
            }
 
            int startTeam = 0;
            int linkTeam = 0;
            
            for (int i = 0; i < start.size() - 1; i++) {
                
                for (int j = i + 1; j < start.size(); j++) {
                    
                    startTeam += map[start.get(i)][start.get(j)];
                    startTeam += map[start.get(j)][start.get(i)];
                    
                    linkTeam += map[link.get(i)][link.get(j)];
                    linkTeam += map[link.get(j)][link.get(i)];
                }
            }
 
            ans = Math.min(ans, Math.abs(startTeam - linkTeam));
            return;
        }
 
        team[depth] = true;
        dfs(depth + 1, numOfPerson + 1);
 
        team[depth] = false;
        dfs(depth + 1, numOfPerson);
 
    }
 
    public static boolean isBoundary(int row, int col) {
        return (row >= 0 && row < N) && (col >= 0 && col < N);
    }
 
}
 
class Node {
    int row;
    int col;
 
    public Node(int row, int col) {
        this.row = row;
        this.col = col;
    }
 
}
 
cs


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