#588
Dijkstra
Se dă un graf orientat ponderat – în care fiecare arc are asociat un cost, număr natural strict pozitiv, și un nod p
. Să se determine, folosind algoritmul lui Dijkstra, costul minim al drumului de la p
la fiecare nod al grafului.
Problema | Dijkstra | Operații I/O |
dijkstra.in /dijkstra.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54950178 | Utilizator | |
Fișier | dijkstra.cpp | Dimensiune | 1.26 KB |
Data încărcării | 13 Decembrie 2024, 10:36 | Scor / rezultat | Eroare de compilare |
dijkstra.cpp:3:12: warning: ISO C99 requires whitespace after the macro name [enabled by default] #define inf=1e9; ^ dijkstra.cpp: In function 'int main()': dijkstra.cpp:3:12: error: expected primary-expression before '=' token #define inf=1e9; ^ dijkstra.cpp:17:14: note: in expansion of macro 'inf' c[i]=inf; ^ dijkstra.cpp:3:12: error: expected primary-expression before '=' token #define inf=1e9; ^ dijkstra.cpp:22:18: note: in expansion of macro 'inf' int vmin=inf; ^ dijkstra.cpp:3:12: error: expected primary-expression before '=' token #define inf=1e9; ^ dijkstra.cpp:27:26: note: in expansion of macro 'inf' if(c[i]!=inf) ^ dijkstra.cpp:3:16: error: expected ')' before ';' token #define inf=1e9; ^ dijkstra.cpp:27:26: note: in expansion of macro 'inf' if(c[i]!=inf) ^ dijkstra.cpp:27:29: error: expected primary-expression before ')' token if(c[i]!=inf) ^ dijkstra.cpp:27:29: error: expected ';' before ')' token dijkstra.cpp:61:1: error: expected '}' at end of input } ^ dijkstra.cpp:61:1: error: expected '}' at end of input dijkstra.cpp:61:1: error: expected '}' at end of input dijkstra.cpp:22:13: warning: unused variable 'vmin' [-Wunused-variable] int vmin=inf; ^ dijkstra.cpp:9:55: warning: unused variable 'ant' [-Wunused-variable] int n,a[101][101]={0},p,b,x,y,c[101],viz[101]={0},ant[101]={0}; ^ dijkstra.cpp:61:1: error: expected '}' at end of input } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Dijkstra face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.