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
- back-end
- 모던자바
- 그래프
- TDD
- 스프링
- DP
- 알고리즘
- OS
- 자료구조
- 코틀린
- Java8
- BFS
- 네트워크
- baekjoon
- 백준
- 프로그래머스
- LEVEL2
- Brute-force
- kotlin
- programmers
- java
- lambda
- algorithm
- 자바
- DFS
- 백트래킹
- Spring
- backtracking
- 프로젝트
- 운영체제
Archives
- Today
- Total
요깨비's LAB
[백준, 그래프 이론, Java] P.2188 축사 배정(이분 매칭) 본문
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
class Cow {
int id;
List<Integer> preferences;
public Cow(int id) {
this.id = id;
this.preferences = new ArrayList<>();
}
}
public class Main {
public static int[] barns;
public static boolean[] isProccesed;
public static List<Cow> cows;
public static int N;
public static int M;
public static void main(String[] args) {
Scanner scr = new Scanner(System.in);
N = scr.nextInt();
M = scr.nextInt();
barns = new int[M];
isProccesed = new boolean[M];
cows = new ArrayList<>();
for (int i = 0; i < M; i++) {
barns[i] = -1;
}
for (int i = 0; i < N; i++) {
Cow cow = new Cow(i);
int preferenceCount = scr.nextInt();
for (int j = 0; j < preferenceCount; j++) {
int preferenceId = scr.nextInt() - 1;
cow.preferences.add(preferenceId);
}
cows.add(cow);
}
int answer = 0;
for (int i = 0; i < N; i++) {
isProccesed = new boolean[M];
Cow cow = cows.get(i);
if(doBipartiteMatching(cow, 0)) answer++;
}
System.out.println(answer);
}
public static boolean doBipartiteMatching(Cow cow, int count) {
int size = cow.preferences.size();
for (int i = 0; i < size; i++) {
int barnId = cow.preferences.get(i);
if (!isProccesed[barnId]) {
isProccesed[barnId] = true;
if (barns[barnId] == -1 || doBipartiteMatching(cows.get(barns[barnId]), count + 1)) {
barns[barnId] = cow.id;
return true;
}
}
}
return false;
}
}
'알고리즘(Java) > 그래프 이론' 카테고리의 다른 글
[백준, Tree, Java] P.1991 트리 순회 (0) | 2021.09.23 |
---|---|
[백준, 그래프 이론, Java] P.1647 도시 분할 계획 (크루스칼) (0) | 2021.04.20 |
[백준, 그래프 이론, Java] P.1197 최소 스패닝 트리 (프림) (0) | 2021.04.16 |
[백준, 그래프 이론, Java] P.1197 최소 스패닝 트리 (크루스칼) (0) | 2021.04.16 |
[백준, 그래프 이론, Java] P.1922 네트워크 연결 (프림) (0) | 2021.04.16 |
Comments