#581
Drumuri
Se dă un graf orientat cu n
noduri și un nod p
. Să se afișeze toate nodurile q
ale grafului, diferite de p
, cu proprietatea că există cel puțin un drum de la p
la q
și lungimea drumului minim este pară.
Problema | Drumuri | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #45281550 | Utilizator | |
Fișier | drumuri.cpp | Dimensiune | 1.83 KB |
Data încărcării | 08 Octombrie 2023, 17:43 | Scor / rezultat | Eroare de compilare |
drumuri.cpp:14:31: warning: 'getChildren' function uses 'auto' type specifier without trailing return type [enabled by default] const auto& getChildren() const { return childIds; } ^ drumuri.cpp: In function 'std::vector<int> BFS(const std::vector<Node>&, IDType, int)': drumuri.cpp:32:14: error: expected unqualified-id before '[' token auto [nodeId, depth] = currentLayer.front(); ^ drumuri.cpp:35:13: error: 'depth' was not declared in this scope if (depth % 2 == 0 && depth != 0) ^ drumuri.cpp:36:40: error: 'nodeId' was not declared in this scope nodesAtEvenDepth.push_back(nodeId); ^ drumuri.cpp:38:42: error: 'nodeId' was not declared in this scope for (const auto& childId : nodes[nodeId].getChildren()) { ^ drumuri.cpp:41:46: error: 'depth' was not declared in this scope currentLayer.push({ childId, depth + 1 }); ^ drumuri.cpp:41:57: error: no matching function for call to 'std::queue<std::pair<int, int> >::push(<brace-enclosed initializer list>)' currentLayer.push({ childId, depth + 1 }); ^ drumuri.cpp:41:57: note: candidates are: In file included from /usr/include/c++/4.8/queue:64:0, from drumuri.cpp:2: /usr/include/c++/4.8/bits/stl_queue.h:212:7: note: void std::queue<_Tp, _Sequence>::push(const value_type&) [with _Tp = std::pair<int, int>; _Sequence = std::deque<std::pair<int, int>, std::allocator<std::pair<int, int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<int, int>] push(const value_type& __x) ^ /usr/include/c++/4.8/bits/stl_queue.h:212:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const value_type& {aka const std::pair<int, int>&}' /usr/include/c++/4.8/bits/stl_queue.h:217:7: note: void std::queue<_Tp, _Sequence>::push(std::queue<_Tp, _Sequence>::value_type&&) [with _Tp = std::pair<int, int>; _Sequence = std::deque<std::pair<int, int>, std::allocator<std::pair<int, int> > >; std::queue<_Tp, _Sequence>::value_type = std::pair<int, int>] push(value_type&& __x) ^ /usr/include/c++/4.8/bits/stl_queue.h:217:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::queue<std::pair<int, int> >::value_type&& {aka std::pair<int, int>&&}'
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Drumuri 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ă.