#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 | #53319055 | Utilizator | |
Fișier | dfs.cpp | Dimensiune | 419 B |
Data încărcării | 24 Octombrie 2024, 11:33 | Scor / rezultat | Eroare de compilare |
dfs.cpp:4:1: error: expected ',' or ';' before 'ofstream' ofstream fout("dfs.out") ^ dfs.cpp: In function 'void dfs(int)': dfs.cpp:9:5: error: 'v' was not declared in this scope v[k]=1; ^ dfs.cpp:10:5: error: 'fout' was not declared in this scope fout<<k<<" "; ^ dfs.cpp:11:20: error: 'n' was not declared in this scope for(int i=1;i<=n;i++) ^ dfs.cpp:12:12: error: 'a' was not declared in this scope if(a[k][i]==1&&v[i]==0) ^ dfs.cpp:8:9: warning: unused variable 'i' [-Wunused-variable] int i=1; ^ dfs.cpp: In function 'int main()': dfs.cpp:18:10: error: 'n' was not declared in this scope fin>>n>>m>>x; ^ dfs.cpp:18:13: error: 'm' was not declared in this scope fin>>n>>m>>x; ^ dfs.cpp:18:16: error: 'x' was not declared in this scope fin>>n>>m>>x; ^ dfs.cpp:19:16: error: 'i' was not declared in this scope while(fin>>i>>j) ^ dfs.cpp:19:19: error: 'j' was not declared in this scope while(fin>>i>>j) ^ dfs.cpp:21:11: error: 'a' was not declared in this scope a[i][j]=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ă.