This commit is contained in:
Zengtudor 2024-11-11 10:59:08 +08:00
parent 0bef90129c
commit b9b726c22f

View File

@ -20,7 +20,7 @@ int main(){
std::fill(dists, dists+max_n, inf); std::fill(dists, dists+max_n, inf);
std::cin>>n>>m>>s; std::cin>>n>>m>>s;
dists[s]=0;
for(ll i{1};i<=m;i++){ for(ll i{1};i<=m;i++){
std::cin>>edges[i].u>>edges[i].v>>edges[i].x>>edges[i].y>>edges[i].t; std::cin>>edges[i].u>>edges[i].v>>edges[i].x>>edges[i].y>>edges[i].t;
} }