#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 | #53954793 | Utilizator | |
Fișier | tare_conexitate.cpp | Dimensiune | 941 B |
Data încărcării | 15 Noiembrie 2024, 18:36 | Scor / rezultat | Eroare de compilare |
tare_conexitate.cpp:7:1: error: expected initializer before 'vector' vector<int>L[101], L1[101]; ^ tare_conexitate.cpp: In function 'void Dfs(int)': tare_conexitate.cpp:13:17: error: 'L' was not declared in this scope for(int i : L[k]) ^ tare_conexitate.cpp: In function 'void Dfs1(int)': tare_conexitate.cpp:20:17: error: 'L1' was not declared in this scope for(int i : L1[k]) ^ tare_conexitate.cpp: In function 'int main()': tare_conexitate.cpp:30:17: error: 'm' was not declared in this scope cin >> n >> m; ^ tare_conexitate.cpp:34:9: error: 'L' was not declared in this scope L[x].push_back(y); ^ tare_conexitate.cpp:35:9: error: 'L1' was not declared in this scope L1[y].push_back(x); ^
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ă.