#583
Tare conexitate
Se dă un graf orientat cu n
noduri. Să se determine câte componente tare conexe are graful dat.
Problema | Tare conexitate | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #49435114 | Utilizator | |
Fișier | tare_conexitate.cpp | Dimensiune | 975 B |
Data încărcării | 01 Martie 2024, 13:17 | Scor / rezultat | Eroare de compilare |
tare_conexitate.cpp: In function 'void df1(int)': tare_conexitate.cpp:12:31: error: invalid types 'int[int]' for array subscript if(s[i] == 0 && a[x][i] == 1) ^ tare_conexitate.cpp: In function 'void df2(int)': tare_conexitate.cpp:18:5: error: 'p' was not declared in this scope p[x] = 1; ^ tare_conexitate.cpp:20:31: error: invalid types 'int[int]' for array subscript if(p[i] == 0 && a[i][x] == 1) ^ tare_conexitate.cpp: In function 'int main()': tare_conexitate.cpp:30:15: error: invalid types 'int[int]' for array subscript a[i][j] = 1; ^ tare_conexitate.cpp:36:15: error: invalid types 'int[int]' for array subscript if(cnt[i]==0)// daca i apartine unei componente ^ tare_conexitate.cpp:40:16: error: 'p' was not declared in this scope s[i]=p[i]=false; ^ tare_conexitate.cpp:42:9: error: 'nrc' was not declared in this scope nrc++; //crestem nr de componente tari conexe ^ tare_conexitate.cpp:44:20: error: 'dfs' was not declared in this scope df1(i); dfs(i); ^ tare_conexitate.cpp:47:26: error: 'p' was not declared in this scope if(s[j]==true && p[j]==true)// daca j a fost dublu parcurs ^ tare_conexitate.cpp:49:16: error: invalid types 'int[int]' for array subscript cnt[j]=nrc ^ tare_conexitate.cpp:49:18: error: 'nrc' was not declared in this scope cnt[j]=nrc ^ tare_conexitate.cpp:50:9: error: expected ';' before '}' token } ^ tare_conexitate.cpp:54:10: error: 'nrc' was not declared in this scope cout<<nrc; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Tare conexitate 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ă.