#1652
RF
Se dă un graf orientat în care arcele au asociate costuri (numere naturale nenule). Să se determine câte arce (x,y)
din graf au costul egal cu costul drumului de cost minim de la x
la y
.
Problema | RF | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54905793 | Utilizator | |
Fișier | rf.cpp | Dimensiune | 922 B |
Data încărcării | 11 Decembrie 2024, 20:22 | Scor / rezultat | Eroare de compilare |
rf.cpp: In function 'int main()': rf.cpp:27:36: error: converting to 'std::vector<std::tuple<int, int, int> >::value_type {aka std::tuple<int, int, int>}' from initializer list would use explicit constructor 'constexpr std::tuple< <template-parameter-1-1> >::tuple(_UElements&& ...) [with _UElements = {int&, int&, int&}; <template-parameter-2-2> = void; _Elements = {int, int, int}]' edge.push_back({x, y, cost}); ^ rf.cpp:40:15: error: expected unqualified-id before '[' token for (auto [x, y, c] : edge) { ^ rf.cpp:40:15: error: expected ';' before '[' token rf.cpp:40:16: error: 'x' was not declared in this scope for (auto [x, y, c] : edge) { ^ rf.cpp:40:19: error: 'y' was not declared in this scope for (auto [x, y, c] : edge) { ^ rf.cpp:40:22: error: 'c' was not declared in this scope for (auto [x, y, c] : edge) { ^ rf.cpp: In lambda function: rf.cpp:40:25: error: expected '{' before ':' token for (auto [x, y, c] : edge) { ^ rf.cpp: In function 'int main()': rf.cpp:40:25: error: expected ';' before ':' token rf.cpp:40:25: error: expected primary-expression before ':' token rf.cpp:40:25: error: expected ')' before ':' token rf.cpp:40:25: error: expected primary-expression before ':' token rf.cpp:40:25: error: expected ';' before ':' token rf.cpp:49:1: error: expected '}' at end of input } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema RF 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ă.