此题,弄了几个小时,做完之后都说 那个题很水, 不过这个题 无关水与不水。 题意读错,开始 结合样例 ,认为是求有几条不同路径的最短路。
但是,不是 ” He considers taking a path from A to B to be progress if there exists a route from B to his home that is shorter than any possible route from A. “
是从起点1 到终点2 的路径中的经过的每一个点的dis[]都是递减的才可以算作一个所求的路径。
先 spfa或 bellman 求出2到没点的距离,再DFS 求可行的递减路径, 别忘了记忆化搜索。
SPFA算法 31MS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<vector>
using namespace std;
#define PI acos