티스토리 뷰
백준 소스코드 [C++] 2188 축사 배정
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
typedef long long ll;
using namespace std;
#define MAX 987654321
int L, R;
#define left_max 200
#define right_max 200
bool adj[left_max][right_max];
vector<int> leftmatch, rightmatch;
vector<bool> visited;
bool dfs(int l) {
if (visited[l]) return false;
visited[l] = true;
for (int r = 0;r < R;r++) {
if (adj[l][r]) {
if (rightmatch[r] == -1 || dfs(rightmatch[r])) {
leftmatch[l] = r; rightmatch[r] = l; return true;
}
}
}
return false;
}
int match() {
leftmatch = vector<int>(L, -1); rightmatch = vector<int>(R, -1);
int size = 0;
for (int l = 0;l < L;l++) {
visited = vector<bool>(L, false);
if (dfs(l)) size++;
}
return size;
}
int main() {
cin >> L>>R;
int t,m;
for (int i = 0;i < L;i++) {
cin >> t;
while (t--) {
cin >> m;
adj[i][m-1] = true;
}
}
cout << match();
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 9576 책 나눠주기 (0) | 2020.09.12 |
---|---|
백준 소스코드 [C++] 11375 열혈강호 (0) | 2020.09.12 |
백준 소스코드 [C++] 16064 Coolest Ski Route (0) | 2020.09.09 |
백준 소스코드 [C++] 2822 점수 계산 (0) | 2020.09.09 |
백준 소스코드 [C++] 11004 K번째 수 (0) | 2020.09.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 부스트캠프 6기
- 다익스트라 시간복잡도
- 최단경로문제
- State Restoration
- 벨만포드 시간복잡도
- HIG
- CPU와 Memory
- 최단경로 문제
- 벨만포드 알고리즘
- 네트워크 플로우
- MeTal
- observeOn
- mach-o
- CompositionalLayout
- 코딩대회
- 에드몬드 카프 알고리즘
- 강한 순환 참조
- WWDC17
- WWDC16
- Testable
- 포드 풀커슨 알고리즘
- WWDC21
- rxswift
- 네트워크 유량
- 컴퓨터 추상화
- WWDC19
- 최대 매칭
- 최단경로 알고리즘
- IOS
- test coverage
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함