记录编号 |
205528 |
评测结果 |
AAAAAAAAAA |
题目名称 |
不平凡的引线 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.843 s |
提交时间 |
2015-11-05 15:39:17 |
内存使用 |
3.37 MiB |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=100010;
const int maxm=100010;
const int mod=338;
const double pi=3.14;
struct node
{
int to;
int val;
};
vector<node> G[maxn];
queue<int> q;
int inq[maxn],in[maxn];
int d[maxn];
double dist[maxn];
double cost(int a,int b,int len)
{
return a+(b-a)+(len-(b-a))/2.0;
}
int main()
{
freopen("firelead.in","r",stdin);
freopen("firelead.out","w",stdout);
//clock_t st=clock();
memset(d,0x3f,sizeof(d));
int m,u,v,w;scanf("%d",&m);
for(int i=1;i<=m;i++)
{
scanf("%d%d%d",&u,&v,&w);
G[u].push_back((node){v,w});in[u]++;
G[v].push_back((node){u,w});in[v]++;
}
for(int i=1;i<=m+1;i++)
{
if(in[i]==1)
{
q.push(i);
d[i]=0;inq[i]++;
}
}
while(!q.empty())
{
int u=q.front();
q.pop();inq[u]--;
int len=G[u].size();
for(int i=0;i<len;i++)
{
node v=G[u][i];
if(d[v.to]>d[u]+v.val)
{
d[v.to]=d[u]+v.val;
if(!inq[v.to])
{
q.push(v.to);
inq[v.to]++;
}
}
}
}
double ans=0;
for(int i=1;i<=m+1;i++)
{
int len=G[i].size();
for(int j=0;j<len;j++)
{
node v=G[i][j];
int mi=min(d[i],d[v.to]);
int ma=max(d[i],d[v.to]);
double tmp=mi+(ma-mi)+(v.val-min(ma-mi,v.val))/2.0;
ans=max(ans,tmp);
}
}
printf("%.1lf\n",ans);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}