主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
blackevil
2023年2月9日 20:26
弗洛伊德算法求出各点间的最短距离和最佳路径
P1666
回复 0
|
赞 1
|
浏览 2.7k
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int n,m,S,T,A; int mp[1001][1001];//存储图像 string path[1001][1001]; //以字符串的方式记录每个点之间的最佳路径 string name[1001];//记录顶点 void floyd(){ //弗洛伊德函数 for(int i=1;i<=n;i++){ ...
930254841
2022年5月29日 10:42
朴素BFS
P1666
回复 0
|
赞 1
|
浏览 4.0k
思路:广度优先搜索。队列记录路径节点,奇数点+1,偶数点+2,走到goal时结束搜索。 #include <bits/stdc++.h> using namespace std; typedef struct node { int num; int sum; node() {} node(int num, int sum) { this->num = num; this->sum = sum; } } node; int main() { ...
chenziyi
2020年5月11日 11:19
求最帅的指出一下spfa50%ac
P1666
回复 0
|
赞 0
|
浏览 7.3k
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <string> #include <vector> #include <queue> using namespace std; int n,m,s,t,a; const int maxn=1001; struct edge{ int u,v,w; edge(int u,int v,int w):u(u...
我要上华工
2020年3月25日 22:29
迪杰斯特拉算法
P1666
回复 0
|
赞 3
|
浏览 9.8k
#include<iostream> #include<stack> #include<string> #include<queue> #include<map> #include<vector> #include<cmath> #include<algorithm> #include<cstring> #include<set> using namespace std; #define MAXX 1010 #define INFF 0x3f...
题目
好坑的电子地图
题解数量
4
发布题解
热门题解
1
迪杰斯特拉算法
2
朴素BFS
3
弗洛伊德算法求出各点间的最短距离和最佳路径
4
求最帅的指出一下spfa50%ac