健壮麦片

文章
4
资源
0
加入时间
2年10月17天

P1144 最短路计数 spfa

P1144 最短路计数#include<bits/stdc++.h>using namespace std;#define maxn 1000010const int inf = 0x7fffffff; int n, m, x, y;struct Edge{ int next; int to;}e[maxn];int head[maxn],t=0;...