#19
BFS
Se consideră un graf neorientat cu n
vârfuri și m
muchii și un vârf cunoscut X
. Să se afişeze vârfurile vizitate în urma parcurgerii în lățime a grafului pornind din vârful X
.
Problema | BFS | Operații I/O |
BFS.in /BFS.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 128 MB
/
Stivă 8 MB
|
Id soluție | #54228074 | Utilizator | |
Fișier | bfs.cpp | Dimensiune | 1.35 KB |
Data încărcării | 22 Noiembrie 2024, 17:55 | Scor / rezultat | Eroare de compilare |
bfs.cpp:36:13: error: the value of 'nMAX' is not usable in a constant expression bitset<nMAX+1>Viz; ^ bfs.cpp:34:5: note: 'int nMAX' is not const int nMAX=1e4; ^ bfs.cpp:36:14: error: the value of 'nMAX' is not usable in a constant expression bitset<nMAX+1>Viz; ^ bfs.cpp:34:5: note: 'int nMAX' is not const int nMAX=1e4; ^ bfs.cpp:36:14: note: in template argument for type 'unsigned int' bitset<nMAX+1>Viz; ^ bfs.cpp:36:18: error: invalid type in declaration before ';' token bitset<nMAX+1>Viz; ^ bfs.cpp:38:23: error: array bound is not an integer constant before ']' token vector<int>Graf[nMAX+1]; ^ bfs.cpp: In function 'void bfs(int)': bfs.cpp:41:12: error: invalid types 'int[int]' for array subscript Viz[nod]=1; ^ bfs.cpp:47:20: error: 'Graf' was not declared in this scope for(auto i:Graf[x]) ^ bfs.cpp: In function 'void Read()': bfs.cpp:62:9: error: 'Graf' was not declared in this scope Graf[x].pb(y); ^ bfs.cpp: In function 'void Solve()': bfs.cpp:69:14: error: 'Graf' was not declared in this scope sort(Graf[i].begin(), Graf[i].end()); ^ bfs.cpp: At global scope: bfs.cpp:72:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] main() ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema BFS 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ă.