#539
DFS
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 adâncime a grafului pornind din vârful X
.
Problema | DFS | Operații I/O |
dfs.in /dfs.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 128 MB
/
Stivă 8 MB
|
Id soluție | #53931663 | Utilizator | |
Fișier | dfs.cpp | Dimensiune | 563 B |
Data încărcării | 15 Noiembrie 2024, 09:00 | Scor / rezultat | Eroare de compilare |
dfs.cpp:5:1: error: 'ofstrem' does not name a type ofstrem fout("dfs.out") ^ dfs.cpp: In function 'void dfs(int)': dfs.cpp:8:5: error: 'fout' was not declared in this scope fout<<x<<" ";//afisez nodul x ^ dfs.cpp:9:5: error: 'v' was not declared in this scope v[x]=1;//si il consider vizitat ^ dfs.cpp:10:20: error: 'n' was not declared in this scope for(int i=1;i<=n;i++)//pt toate vf din graf ^ dfs.cpp:11:8: error: 'a' was not declared in this scope if(a[x][i] && !v[i])//verific daca e succesor ^ dfs.cpp: In function 'int main()': dfs.cpp:16:12: error: 'n' was not declared in this scope fin >> n >> m >> p; ^ dfs.cpp:16:17: error: 'm' was not declared in this scope fin >> n >> m >> p; ^ dfs.cpp:16:22: error: 'p' was not declared in this scope fin >> n >> m >> p; ^ dfs.cpp:19:16: error: 'x' was not declared in this scope fin >> x >> y; ^ dfs.cpp:19:21: error: 'y' was not declared in this scope fin >> x >> y; ^ dfs.cpp:20:9: error: 'a' was not declared in this scope a[z][y] = a[y][z] = 1; ^ dfs.cpp:20:11: error: 'z' was not declared in this scope a[z][y] = a[y][z] = 1; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema DFS 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ă.