티스토리 뷰
반응형
✏️문제 링크
https://www.acmicpc.net/problem/2188
✏️문제 설명
✏️문제 풀이
기본적인 이분 매칭 구현 문제입니다.
이분 매칭 알아보기
https://pooreumjung.tistory.com/338
✏️문제 코드
#include<iostream>
#include<vector>
using namespace std;
#define MAX 201
int N, M;
vector<int>graph[MAX];
int node[MAX];
bool visit[MAX];
bool dfs(int cow);
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> N >> M;
for (int i = 1; i <= N; i++) { // 그래프 구현
int number;
cin >> number;
while (number--) {
int shed;
cin >> shed;
graph[i].push_back(shed);
}
}
int count = 0;
for (int i = 1; i <= N; i++) {
fill(visit, visit + MAX, false);
if (dfs(i))
count++;
}
cout << count;
}
bool dfs(int cow)
{
for (int i = 0; i < graph[cow].size(); i++) {
int shed = graph[cow][i];
if (visit[shed])
continue;
visit[shed] = true;
if (node[shed] == 0 || dfs(node[shed])) {
node[shed] = cow;
return true;
}
}
return false;
}
✏️다른 이분 매칭 문제 보러가기
https://pooreumjung.tistory.com/339
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[C/C++] 백준 1671번 - 상어의 저녁식사 (0) | 2024.04.15 |
---|---|
[C/C++] 백준 1298번 - 노트북의 주인을 찾아서 (0) | 2024.04.15 |
[C/C++] 백준 열혈강호 문제 모음 / 백준 11375번, 백준 11376번, 백준 11377번 (0) | 2024.04.14 |
[C/C++] 백준 14245번 - XOR (0) | 2024.04.13 |
[C/C++] 백준 19975번 - 수열과 쿼리 21 (0) | 2024.04.12 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Do it!
- 자바스크립트
- DP
- 자료구조
- 유클리드 호제법
- 알고리즘 공부
- java
- C++
- 스택
- HTML5
- 세그먼트 트리
- 우선순위 큐
- 이분 매칭
- BFS
- DFS
- 자바
- html
- C++ Stack
- CSS
- c++ string
- 투 포인터
- 카운팅 정렬
- js
- 유니온 파인드
- 백준 풀이
- 스프링 부트 crud 게시판 구현
- 에라토스테네스의 체
- 반복문
- 알고리즘
- 백준
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함