반응형
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 |
Tags
- 백준
- OFFSET
- 물채우기
- upper_bound
- Docker
- 경력
- incr
- BOJ
- Kafka
- 처우산정
- 성적평가
- 이분탐색
- 13908
- 연결요소
- msSQL
- softeer
- 퇴사통보
- 파라메트릭
- compose
- 매개변수탐색
- 처우협의
- 오퍼레터
- 6987
- @P0
- dfs
- BFS
- 백트래킹
- 기술면접
- boj #19237 #어른 상어
- 소프티어
Archives
- Today
- Total
기술 블로그
11375번 열혈강호 본문
728x90
반응형
이분 매칭 문제이다.
81번 째 줄을 조심하자.
https://www.acmicpc.net/problem/11375
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 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; #define MAX 1000 int Connection[MAX][MAX] = { -1, }; int work[MAX] = { -1, }; // 인덱스는 일 int person[MAX] = { -1, }; // 인덱스는 사람 int visit[MAX] = { -1, }; int Work = 0, Person = 0; // 위의 배열 2개(work, person) 대소문자 조심할 것. int DFS(int start) { if (visit[start] == 1) return -1; visit[start] = 1; for (int i = 0; i < Work; i++) { if (Connection[start][i] == 1) { if (work[i] == -1 || DFS(work[i]) == 1) { work[i] = start; person[start] = i; return 1; } } } return -1; } int BipartiteMatching() { memset(work, -1, sizeof(work)); memset(person, -1, sizeof(person)); int Size = 0; for (int i = 0; i < Person; i++) { memset(visit, -1, sizeof(visit)); if (DFS(i) == 1) ++Size; } return Size; } int main(void) { memset(Connection, -1, sizeof(Connection)); scanf("%d %d", &Person, &Work); for (int i = 0; i < Person; i++) { int canWork_Cnt = 0; scanf("%d", &canWork_Cnt); for (int j = 0; j < canWork_Cnt; j++) { int canWork = 0; scanf("%d", &canWork); --canWork; // 누락 조심 Connection[i][canWork] = 1; // i번 째 직원이 ,canWork번 일을 할 수 있다. } } printf("%d\n", BipartiteMatching()); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
1967번 트리의 지름 (0) | 2018.09.30 |
---|---|
1991번 트리 순회 (0) | 2018.09.30 |
2188번 축사 배정 (0) | 2018.09.29 |
15650번 N과 M(2) (0) | 2018.09.28 |
4948번 베르트랑 공준 (0) | 2018.09.26 |