Notice
Recent Posts
Recent Comments
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
- 구현
- 트리
- Zuul
- Spring Cloud Config
- 스택
- spring boot
- 주울
- Java
- dp
- 이분 매칭
- 비트마스킹
- 백트래킹
- 다익스트라
- Logback
- 서비스 디스커버리
- 메모이제이션
- 플로이드 와샬
- 달팽이
- Gradle
- ZuulFilter
- spring cloud
- 완전 탐색
- 구간 트리
- 게이트웨이
- 스프링 시큐리티
- docker-compose
- 유레카
- 도커
- 이분 탐색
- BFS
Archives
- Today
- Total
Hello, Freakin world!
[백준 11375번] 열혈 강호 본문
package backjoon.networkflow.bipartitematching.p11375;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
static int N,M;
static int[][] edge; //간선 : [직원][작업]
static int[] matched;
static boolean[] visited;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new FileReader("testcase.txt"));
// BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken()); M = Integer.parseInt(st.nextToken());
edge = new int[N][M];
for (int employee = 0; employee < N; employee++) {
st = new StringTokenizer(br.readLine());
int taskSize = Integer.parseInt(st.nextToken());
for (int i = 0; i < taskSize; i++) {
int task = Integer.parseInt(st.nextToken());
edge[employee][task-1] = 1;
}
}
int ret = bipartiteMatching();
System.out.println(ret);
}
public static int bipartiteMatching(){
matched = new int[M]; Arrays.fill(matched, -1);
int totalMatching = 0;
for (int i = 0; i < N; i++) {
visited = new boolean[N];
if(searchAugmentPath(i)) {
totalMatching++;
}
}
return totalMatching;
}
private static boolean searchAugmentPath(int employee) {
if(visited[employee]) return false;
visited[employee] = true;
for (int task = 0; task < M; task++) {
if(edge[employee][task] == 1) {
if(matched[task] == -1 || searchAugmentPath(matched[task])) {
matched[task] = employee;
return true;
}
}
}
return false;
}
}
축사 배정 문제와 완벽하게 동일한 문제.
이분 매칭 알고리즘을 안보고 혼자 다시 구현해봤다.
연습 연습 연습
'알고리즘 > PS' 카테고리의 다른 글
[백준 2446번] 별찍기 9 (0) | 2020.09.04 |
---|---|
[백준 11376번] 열혈강호2 (0) | 2020.09.03 |
[백준 2188번] 축사 배정 - 이분 매칭 고찰하기 (0) | 2020.09.03 |
[백준 1003번] Contact (0) | 2020.08.25 |
[백준 1012] 유기농 배추 (0) | 2020.08.24 |
Comments