#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 | #53977621 | Utilizator | |
Fișier | dfs.cpp | Dimensiune | 1.03 KB |
Data încărcării | 16 Noiembrie 2024, 15:19 | Scor / rezultat | Eroare de compilare |
dfs.cpp:35:13: error: redefinition of 'std::ifstream fin' ifstream fin("dfs.in"); ^ dfs.cpp:4:10: error: 'std::ifstream fin' previously declared here ifstream fin("dfs.in"); ^ dfs.cpp:36:14: error: redefinition of 'std::ofstream fout' ofstream fout("dfs.out"); ^ dfs.cpp:5:10: error: 'std::ofstream fout' previously declared here ofstream fout("dfs.out"); ^ dfs.cpp:37:12: error: redefinition of 'int viz [101]' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:5: error: 'int viz [101]' previously defined here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:37:28: error: redefinition of 'int a [101][101]' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:18: error: 'int a [101][101]' previously defined here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:37:34: error: redefinition of 'int n' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:34: error: 'int n' previously declared here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:37:36: error: redefinition of 'int m' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:36: error: 'int m' previously declared here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:37:38: error: redefinition of 'int x' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:38: error: 'int x' previously declared here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:37:40: error: redefinition of 'int i' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:40: error: 'int i' previously declared here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:37:42: error: redefinition of 'int j' int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp:6:42: error: 'int j' previously declared here int viz[101]={0},a[101][101]={0},n,m,x,i,j;; ^ dfs.cpp: In function 'void dfs(int)': dfs.cpp:38:6: error: redefinition of 'void dfs(int)' void dfs(int nr) ^ dfs.cpp:7:6: error: 'void dfs(int)' previously defined here void dfs(int nr) ^ dfs.cpp: In function 'int main()': dfs.cpp:50:5: error: redefinition of 'int main()' int main() ^ dfs.cpp:19:5: error: 'int main()' previously defined here int main() ^
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ă.