#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 | #4335698 | Utilizator | |
Fișier | tare_conexitate.c | Dimensiune | 1.36 KB |
Data încărcării | 16 Februarie 2017, 10:54 | Scor / rezultat | Eroare de compilare |
tare_conexitate.c: In function 'citire': tare_conexitate.c:7:5: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'char *' [-Wformat=] scanf("%d",&n); ^ tare_conexitate.c: In function 'R_Wl': tare_conexitate.c:18:5: error: 'inti' undeclared (first use in this function) inti,j,k; ^ tare_conexitate.c:18:5: note: each undeclared identifier is reported only once for each function it appears in tare_conexitate.c:18:10: error: 'j' undeclared (first use in this function) inti,j,k; ^ tare_conexitate.c:18:9: warning: left-hand operand of comma expression has no effect [-Wunused-value] inti,j,k; ^ tare_conexitate.c:18:12: error: 'k' undeclared (first use in this function) inti,j,k; ^ tare_conexitate.c:18:11: warning: left-hand operand of comma expression has no effect [-Wunused-value] inti,j,k; ^ tare_conexitate.c:20:13: error: 'i' undeclared (first use in this function) for(i=1; i<=n; i++) ^ tare_conexitate.c: In function 'det_succesori': tare_conexitate.c:29:9: warning: array subscript has type 'char' [-Wchar-subscripts] if(a[i][j]&&i!=j) S[j]=1; ^ tare_conexitate.c: In function 'det_predecesori': tare_conexitate.c:36:9: warning: array subscript has type 'char' [-Wchar-subscripts] if(a[j][i]&&i!=j) P[j]=1; ^ tare_conexitate.c: In function 'afisare_componente': tare_conexitate.c:41:47: error: 'nc' undeclared (first use in this function) printf("\ncomponenta tare conexa %d: %d ",nc,i); ^ tare_conexitate.c: At top level: tare_conexitate.c:64:6: warning: return type of 'main' is not 'int' [-Wmain] void main() ^ tare_conexitate.c: In function 'main': tare_conexitate.c:67:5: warning: implicit declaration of function 'R_W' [-Wimplicit-function-declaration] R_W(); ^ tare_conexitate.c: In function 'citire': tare_conexitate.c:7:10: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d",&n); ^ tare_conexitate.c:8:10: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d",&m); ^ tare_conexitate.c:12:14: warning: ignoring return value of 'scanf', 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ă.