#1861
TopSort
Se dă un graf orientat aciclic cu N
noduri numerotate de la 1
la N
. Să se realizeze o sortare topologică a nodurilor.
Problema | TopSort | Operații I/O |
topsort.in /topsort.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #43503002 | Utilizator | |
Fișier | topsort.c | Dimensiune | 2.66 KB |
Data încărcării | 30 Aprilie 2023, 00:58 | Scor / rezultat | 60 puncte |
topsort.c: In function 'afisLista': topsort.c:49:9: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=] printf("%d ", first->key); ^ topsort.c: In function 'afisMatrice': topsort.c:61:13: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=] printf("%d ", g.m[i][j]); ^ topsort.c: In function 'main': topsort.c:120:5: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long int *' [-Wformat=] fscanf(f,"%d",&g.n); ^ topsort.c:121:5: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long int *' [-Wformat=] fscanf(f,"%d",&g.M); ^ topsort.c:130:5: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long int *' [-Wformat=] while(fscanf(f,"%d%d",&u,&v)==2) ^ topsort.c:130:5: warning: format '%d' expects argument of type 'int *', but argument 4 has type 'long int *' [-Wformat=] topsort.c:149:9: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long int' [-Wformat=] fprintf(q,"%d ", top->key); ^ topsort.c:120:11: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result] fscanf(f,"%d",&g.n); ^ topsort.c:121:11: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result] fscanf(f,"%d",&g.M); ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | Corect ! | 20 | 20 | Exemplu | |
2 | 0 secunde | Corect ! | 20 | 20 | ||
3 | 0.004 secunde | Corect ! | 20 | 20 | ||
4 | 0.08 secunde | Caught fatal signal 11 | 20 | 0 | ||
5 | 0.104 secunde | Caught fatal signal 11 | 20 | 0 | ||
Punctaj total | 60 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema TopSort 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ă.