Pagini recente » Cod sursa (job #2814839) | Cod sursa (job #2814835) | Cod sursa (job #2851341)
#include <bits/stdc++.h>
using namespace std;
const int INF = 1e9;
bool dfs(int x, vector<vector<int>>& L, vector<vector<int>>& R,
vector<bool>& vis, vector<int>& pairOf){
if(vis[x]){
return false;
}
vis[x] = true;
for(int y: L[x]){
if(pairOf[y] == INF || dfs(pairOf[y], L, R, vis, pairOf)){
pairOf[y] = x;
return true;
}
}
return false;
}
int getRandom(int x){
return rand() % x;
}
int main(){
ifstream cin("cuplaj.in");
ofstream cout("cuplaj.out");
int N, M, E;
cin >> N >> M >> E;
vector<vector<int>> L(N + 1);
vector<vector<int>> R(M + 1);
int x, y;
for(int i = 1; i <= E; ++i){
cin >> x >> y;
L[x].push_back(y);
R[y].push_back(x);
}
// pairOf[yNode]: xNode, if (xNode, yNode) is a matching edge
// INF, otherwise
vector<bool> vis(N + 1);
vector<int> pairOf(M + 1, INF);
int matchingSize = 0;
srand(time(NULL));
vector<int> xNodes(N);
iota(xNodes.begin(), xNodes.end(), 1);
random_shuffle(xNodes.begin(), xNodes.end(), getRandom);
for(int x: xNodes){
fill(vis.begin(), vis.end(), false);
matchingSize += (int)dfs(x, L, R, vis, pairOf);
}
cout << matchingSize << "\n";
for(int y = 1; y <= M; ++y){
if(pairOf[y] != INF){
cout << pairOf[y] << " " << y << "\n";
}
}
cin.close();
cout.close();
return 0;
}