记录编号 |
435882 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2010]关押罪犯 |
最终得分 |
100 |
用户昵称 |
wumingshi |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.082 s |
提交时间 |
2017-08-10 17:37:49 |
内存使用 |
1.59 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=20005;
struct node
{
int x,y,s;
inline bool operator <(const node other)const
{
return s>other.s;
}
}a[100005];
int f[N<<1];
int n,m,x,y;
inline void read(int &n)
{
n=0;char c=getchar();
while(c<'0'||c>'9') c=getchar();
while(c>='0'&&c<='9') n=n*10+c-48,c=getchar();
}
inline int find(int n)
{
if(f[n]!=n) f[n]=find(f[n]);
return f[n];
}
inline void merge(int x,int y)
{
x=find(x),y=find(y);
f[y]=x;
}
int main()
{
freopen("prison1.in","r",stdin);
freopen("prison1.out","w",stdout);
read(n);read(m);
for(int i=1;i<=n<<1;i++)
f[i]=i;
for(int i=1;i<=m;i++)
read(a[i].x),read(a[i].y),read(a[i].s);
sort(a+1,a+m+1);
for(int i=1;i<=m;i++)
{
x=find(a[i].x),y=find(a[i].y);
if(x==y) return printf("%d",a[i].s),0;
merge(find(a[i].x),find(n+a[i].y)),merge(find(n+a[i].x),find(a[i].y));
}
return puts("0"),0;
}