记录编号 |
416782 |
评测结果 |
AAAAA |
题目名称 |
医院设置 |
最终得分 |
100 |
用户昵称 |
TARDIS |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2017-06-22 18:46:16 |
内存使用 |
0.34 MiB |
显示代码纯文本
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstring>
#define COGS
using namespace std;
const int maxn=110;
int G[maxn][maxn],n,temp1,temp2,temp3,val[maxn];
void in(){
#ifdef COGS
freopen("hospital.in","r",stdin);
freopen("hospital.out","w",stdout);
#endif
scanf("%d",&n);
memset(G,0x3f3f3f3f,sizeof(G));
for (int i=1;i<=n;i++){
G[i][i]=0;
scanf("%d%d%d",&temp1,&temp2,&temp3);
val[i]=temp1;
if (temp2) G[i][temp2]=G[temp2][i]=1;
if (temp3) G[i][temp3]=G[temp3][i]=1;
}
}
void floyd(){
for (int k=1;k<=n;k++){
for (int i=1;i<=n;i++){
for (int j=1;j<=n;j++){
G[i][j]=min(G[i][k]+G[k][j],G[i][j]);
}
}
}
}
void out(){
int ans=0x3f3f3f3f;
for (int i=1;i<=n;i++){
int temp=0;
for (int j=1;j<=n;j++){
if (i!=j) temp+=G[i][j]*val[j];
}
ans=min(ans,temp);
}
printf("%d",ans);
}
int main(){
in();
floyd();
out();
return 0;
}