BZOJ 1191 [HNOI2006] 슈퍼히어로 Hero 이분도 최대 일치
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
class Bipartite_Graph
{
#define N 1100
private:
int head[N],match[N],v[N];
int cnt,n,m;
int tim;
struct Edge
{
int from,to,next;
}edge[N<<1];
void addedge(int from,int to)
{
edge[cnt].from=from,edge[cnt].to=to,edge[cnt].next=head[from];
head[from]=cnt++;
}
bool find(int x)
{
for(int i=head[x];i!=-1;i=edge[i].next)
{
int to=edge[i].to;
if(v[to]!=tim)
{
v[to]=tim;
if(!match[to]||find(match[to]))
{
match[to]=x;
return 1;
}
}
}
return 0;
}
#undef N
public:
void build()
{
scanf("%d%d",&n,&m);
memset(head,-1,sizeof(head));tim=0;
for(int i=1;i<=m;i++)
{
int x,y;
scanf("%d%d",&x,&y);x++;y++;
addedge(i,x),addedge(i,y);
}
}
int Maximal_Matching()
{
int ret=0;
for(int i=1;i<=m;i++)
{
tim++;
if(find(i))ret++;
else break;
}
return ret;
}
}g;
int main()
{
g.build();
printf("%d
",g.Maximal_Matching());
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
vue 단일 페이지에 여러 개의 echarts 도표가 있을 때의 공용 코드 쓰기html에서: 데이터 처리는 말할 필요가 없다.응, 직접 그림을 그려: 공통 섹션: 이 페이지를 떠날 때 파괴: 추가 정보: Vue + Echarts 차트 표시 및 동적 렌더링 준비 작업 echarts 의존 설치 n...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.