Cod sursa(job #1022901)
Utilizator | Data | 6 noiembrie 2013 09:59:01 | |
---|---|---|---|
Problema | Algoritmul Bellman-Ford | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.15 kb |
#include<cstdio>
const int MAXN=50010;
int n,m;
int main()
{
freopen("bellman.in","r",stdin);
freopen("bellman.out","w",stdout);
return 0;
}