알고리즘 모음(C++)

백준 1298 - 노트북의 주인을 찾아서(C++) 본문

백준

백준 1298 - 노트북의 주인을 찾아서(C++)

공대생의 잡다한 사전 2023. 2. 13. 17:00

문제 링크입니다. https://www.acmicpc.net/problem/1298

 

1298번: 노트북의 주인을 찾아서

어느 날 모든 학생들은 한 명이 한개의 노트북을 가지고 공부하던 도중, 자리를 바꾸다가 그만 노트북이 뒤섞이고 말았다. 대다수의 학생들은 자신의 노트북을 잘 알고 있어서 자신의 노트북을

www.acmicpc.net

이분 매칭을 이용하면 쉽게 풀 수 있었습니다.

 

자세한 것은 코드를 참고해주세요

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstdio>
#include <string>
#include <deque>
#include <stack>
#include <map>
#define LL long long
#define pp pair<int, int>
#define F first
#define S second

using namespace std;

int N, M;
vector<int> Match[101];
bool check[101];
vector<int> a_match, b_match;

bool dfs(int start){
    if(check[start]) return false;
    check[start] = true;
    for(int i = 0; i < Match[start].size(); i++){
        int x = Match[start][i];
        if(b_match[x] == -1 || dfs(b_match[x])){
            a_match[start] = x;
            b_match[x] = start;
            return true;
        }
    }
    return false;
}

void solve(){
    a_match = vector<int>(N+1, -1);
    b_match = vector<int>(N+1, -1);
    int Size = 0;
    for(int i = 1; i <= N; i++){
        memset(check, false, sizeof(check));
        if(dfs(i)) Size++;
    }
    cout << Size;
}

int main() {
    cin.tie(0);
	cout.tie(0);
	cin >> N >> M;
	for(int i = 1; i <= M; i++){
	    int x, y;
	    cin >> x >> y;
	    Match[x].push_back(y);
	}
	solve();
	return 0;
}

 

 

질문 및 조언은 댓글을 남겨주세요

'백준' 카테고리의 다른 글

백준 2738 - 행렬 덧셈(C++)  (0) 2023.02.14
백준 2744 - 대소문자 바꾸기(C++)  (0) 2023.02.13
백준 9576 - 책 나눠주기(C++)  (0) 2023.02.11
백준 11377 - 열혈 강호 3(C++)  (0) 2023.02.11
백준 11376 - 열혈강호 2(C++)  (0) 2023.02.11