1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
P1576 ╫ю╨б╗и╖╤.cpp 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <queue>
#include <string.h>
using namespace std;
struct edge{
int stop,next;
double len;
bool operator < (const edge a)const{
return len<a.len;
}
};
int main(){
int n,m;
cin>>n>>m;
int eh[n];
edge e[2*m];
double dis[n];
for(int i=0;i<n;i++){
dis[i] = -1;
}
memset(eh,-1,sizeof(eh));
for(int i=0;i<m;i++){
int s,t;
double l;
scanf("%d%d",&s,&t);
cin>>l;
l = 1-l/100;
s--;
t--;
e[2*i].stop = t;
e[2*i].len = l;
e[2*i].next = eh[s];
eh[s] = 2*i;
e[2*i+1].stop = s;
e[2*i+1].len = l;
e[2*i+1].next = eh[t];
eh[t] = 2*i+1;
}
int a,b;
cin>>a>>b;
a--;
b--;
dis[a] = 1;
priority_queue<edge> q;
int index;
index = eh[a];
while(index != -1){
q.push(e[index]);
index = e[index].next;
}
for(int i=1;i<n;i++){
if(dis[b] != -1)
break;
edge l;
do{
l = q.top();
q.pop();
}while(dis[l.stop] != -1);
dis[l.stop] = l.len;
index = eh[l.stop];
while(index != -1){
if(dis[e[index].stop] == -1)
q.push({e[index].stop,0,e[index].len*dis[l.stop]});
index = e[index].next;
}
}
// for(int i=0;i<n;i++)
// cout<<dis[i]<<" ";
// cout<<endl;
printf("%.8f",100/dis[b]);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/saigonshu/algorithm.git
git@gitee.com:saigonshu/algorithm.git
saigonshu
algorithm
Algorithms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385