1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
P3946 д│д╚дъд╬дкдфд─ги╨б─ё╡─╡у╨─гй.cpp 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <queue>
#include <vector>
#include <string.h>
using namespace std;
struct edge{
int stop,len;
};
int main(){
int n,m,s,t,g,q;
cin>>n>>m>>s>>t>>g>>q;
s--;
t--;
int h[n],l[n];
for(int i=0;i<n;i++)
cin>>h[i]>>l[i];
vector<edge> e[n];
for(int i=0;i<m;i++){
int start,stop,len;
cin>>start>>stop>>len;
start--;
stop--;
e[start].push_back({stop,len});
e[stop].push_back({start,len});
}
queue<int> qq;
int dis[n];
bool inq[n];
memset(dis,-1,sizeof(dis));
memset(inq,false,sizeof(inq));
dis[s] = 0;
for(auto i:e[s]){
dis[i.stop] = i.len;
qq.push(i.stop);
inq[i.stop] = true;
}
// for(int i=0;i<n;i++)
// cout<<dis[i]<<" ";
// cout<<endl;
while(!qq.empty()){
int now;
now = qq.front();
while(!qq.empty() && now != t && h[now]+dis[now]*q > l[now]){
dis[now] = -1;
qq.pop();
now = qq.front();
}
if(qq.empty())
break;
qq.pop();
for(auto i:e[now]){
if(i.stop != t && (dis[now]+i.len)*q+h[i.stop] > l[i.stop])
continue;
if(dis[i.stop] == -1){
dis[i.stop] = dis[now]+i.len;
if(!inq[i.stop]){
qq.push(i.stop);
inq[i.stop] = true;
}
}
else if(dis[now]+i.len < dis[i.stop]){
dis[i.stop] = dis[now]+i.len;
if(!inq[i.stop]){
qq.push(i.stop);
inq[i.stop] = true;
}
}
}
// cout<<1<<endl;
}
if(dis[t] == -1)
cout<<"wtnap wa kotori no oyatsu desu!";
else
cout<<dis[t];
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