描述
输入格式
输出格式
限制
提示
题解
以删边的方式看哪些边删掉后能成为二分图,删掉的最大边就为答案。
将所有边排序,进行二分猜答案,猜小于等于哪条边的删掉后为二分图,再进行验证。
#include<iostream>
#include<cstdio>#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<vector>
#include<queue>
using namespace std;
const int maxn=20005;
struct shu
{
int u,v,l;
};
int n,m,T;
vector<int>a[maxn],w[maxn];
vector<shu>e;
int color[maxn];
bool my(shu a,shu b)
{
return a.l<b.l;
}
void init()
{
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++)
{
int x,y,z;
scanf("%d%d%d",&x,&y,&z);
a[x].push_back(y);
a[y].push_back(x);
w[x].push_back(z);
w[y].push_back(z);
e.push_back((shu){x,y,z});
}
sort(e.begin(),e.end(),my);
}
bool bfs(int p,int z)
{
queue<int>q;
q.push(p);
color[p]=1;
while(!q.empty())
{
int t=q.front();
q.pop();
for(int i=0;i<a[t].size();i++)
{
int j=a[t][i];
if(w[t][i]<=z) continue;
if(color[j]==color[t]) return 0;
if(color[j]==0)
{
q.push(j);
color[j]=3-color[t];
}
}
}
return 1;
}
bool check(int x)
{
memset(color,0,sizeof(color));
for(int i=1;i<=n;i++) if(color[i]==0)
{
bool ok=bfs(i,x);
if(ok==0) return 0;
}
return 1;
}
int main()
{
init();
if(check(0))
{
printf("0");
return 0;
}
int a=0,b=e.size(),ans=0;
while(a<=b)
{
int c=(a+b)/2;
if(check(e[c].l))
{
ans=e[c].l;
b=c-1;
}
else a=c+1;
}
printf("%d",ans);
return 0;
}