#146
graph
Călinuţa tocmai a găsit o foaie de hârtie pe care este desenat un graf orientat aciclic cu N
noduri şi M
arce, fiecare arc având o distanţă de valoare întreagă. Dându-se N
, M
şi cele M
arce cu distanţele dintre ele, trebuie să calculaţi pentru Călinuţa distanţa minimă dintre fiecare două noduri.
Grigore Moisil 2013
Problema | graph | Operații I/O |
graph.in /graph.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54884254 | Utilizator | |
Fișier | graph.cpp | Dimensiune | 1.65 KB |
Data încărcării | 11 Decembrie 2024, 11:03 | Scor / rezultat | Eroare de compilare |
graph.cpp: In function 'void bellmanFord(int, int, const std::vector<std::vector<std::pair<int, int> > >&, std::vector<int>&)': graph.cpp:18:30: error: expected unqualified-id before '[' token for (const auto& [v, w] : adj[u]) { ^ graph.cpp:18:30: error: expected ';' before '[' token graph.cpp:18:31: error: 'v' was not declared in this scope for (const auto& [v, w] : adj[u]) { ^ graph.cpp:18:34: error: 'w' was not declared in this scope for (const auto& [v, w] : adj[u]) { ^ graph.cpp: In lambda function: graph.cpp:18:37: error: expected '{' before ':' token for (const auto& [v, w] : adj[u]) { ^ graph.cpp: In function 'void bellmanFord(int, int, const std::vector<std::vector<std::pair<int, int> > >&, std::vector<int>&)': graph.cpp:18:37: error: expected ';' before ':' token graph.cpp:18:37: error: expected primary-expression before ':' token graph.cpp:18:37: error: expected ')' before ':' token graph.cpp:18:37: error: expected primary-expression before ':' token graph.cpp:18:37: error: expected ';' before ':' token graph.cpp:67:1: error: expected '}' at end of input } ^ graph.cpp:67:1: error: expected '}' at end of input graph.cpp:67:1: error: expected '}' at end of input
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema graph 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ă.