#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 | #4335694 | Utilizator | |
Fișier | tare_conexitate.cpp | Dimensiune | 1.36 KB |
Data încărcării | 16 Februarie 2017, 10:53 | Scor / rezultat | Eroare de compilare |
tare_conexitate.cpp: In function 'void citire()': tare_conexitate.cpp:7:18: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'char*' [-Wformat=] scanf("%d",&n); ^ tare_conexitate.cpp: In function 'void R_Wl()': tare_conexitate.cpp:18:5: error: 'inti' was not declared in this scope inti,j,k; ^ tare_conexitate.cpp:18:10: error: 'j' was not declared in this scope inti,j,k; ^ tare_conexitate.cpp:18:12: error: 'k' was not declared in this scope inti,j,k; ^ tare_conexitate.cpp:20:13: error: 'i' was not declared in this scope for(i=1; i<=n; i++) ^ tare_conexitate.cpp: In function 'void det_succesori(char)': tare_conexitate.cpp:29:15: warning: array subscript has type 'char' [-Wchar-subscripts] if(a[i][j]&&i!=j) S[j]=1; ^ tare_conexitate.cpp: In function 'void det_predecesori(char)': tare_conexitate.cpp:36:18: warning: array subscript has type 'char' [-Wchar-subscripts] if(a[j][i]&&i!=j) P[j]=1; ^ tare_conexitate.cpp: In function 'void afisare_componente(char)': tare_conexitate.cpp:41:47: error: 'nc' was not declared in this scope printf("\ncomponenta tare conexa %d: %d ",nc,i); ^ tare_conexitate.cpp: At global scope: tare_conexitate.cpp:64:11: error: '::main' must return 'int' void main() ^ tare_conexitate.cpp: In function 'int main()': tare_conexitate.cpp:67:9: error: 'R_W' was not declared in this scope R_W(); ^ tare_conexitate.cpp: In function 'void citire()': tare_conexitate.cpp:7:19: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d",&n); ^ tare_conexitate.cpp:8:19: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d",&m); ^ tare_conexitate.cpp:12:29: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d",&x,&y); ^
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ă.