#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
#define MAX 100
const int INF = (1<<30) - 1;
int n , m;
int u[MAX] , v[MAX] , w[MAX];
void readGraph()
{
//
}
void bellman_ford(int start)
{
//
}
int main()
{
}
图论: bellman_ford 求单源最短路…
