#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 | #53940956 | Utilizator | |
Fișier | topsort.cpp | Dimensiune | 607 B |
Data încărcării | 15 Noiembrie 2024, 11:53 | Scor / rezultat | Eroare de compilare |
topsort.cpp: In function 'void dfs(int)': topsort.cpp:11:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<=v[x].size();i++){ ^ topsort.cpp: In function 'int main()': topsort.cpp:19:6: error: invalid operands of types 'std::ifstream() {aka std::basic_ifstream<char>()}' and 'int' to binary 'operator>>' fin>>n>>m; ^ topsort.cpp:22:14: error: invalid operands of types 'std::ifstream() {aka std::basic_ifstream<char>()}' and 'int' to binary 'operator>>' fin>>x>>y; ^ topsort.cpp:30:19: error: invalid operands of types 'std::ofstream() {aka std::basic_ofstream<char>()}' and 'int' to binary 'operator<<' fout<<st[i]<<" "; ^
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ă.