#4027
LongestPath
Se dă un graf orientat aciclic (adică nu există circuite). Lungimea unui drum elementar este dată de numărul de arce. Să se determine lungimea maximă a unui drum elementar în acest graf orientat aciclic.
Folclorul informatic
Problema | LongestPath | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.4 secunde | Limita memorie |
Total: 128 MB
/
Stivă 64 MB
|
Id soluție | #35128383 | Utilizator | |
Fișier | longestpath.cpp | Dimensiune | 1.96 KB |
Data încărcării | 26 Februarie 2022, 21:57 | Scor / rezultat | 100 puncte |
longestpath.cpp: In function 'void afisare(int)': longestpath.cpp:30:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j = 0; j<graf[i].size(); j++) ^ longestpath.cpp: In function 'void dfs(int, int, std::vector<int>&, std::stack<int>&)': longestpath.cpp:43:44: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i<graf[nod_curent].size(); i++) ^ longestpath.cpp: In function 'int calculate_max_path(int, std::stack<int>)': longestpath.cpp:88:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i<graf[top].size(); i++) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | OK. | 5 | 5 | ||
2 | 0 secunde | OK. | 5 | 5 | ||
3 | 0 secunde | OK. | 5 | 5 | ||
4 | 0 secunde | OK. | 5 | 5 | ||
5 | 0.004 secunde | OK. | 10 | 10 | ||
6 | 0.02 secunde | OK. | 10 | 10 | ||
7 | 0.056 secunde | OK. | 10 | 10 | ||
8 | 0.1 secunde | OK. | 10 | 10 | ||
9 | 0.136 secunde | OK. | 10 | 10 | ||
10 | 0.16 secunde | OK. | 10 | 10 | ||
11 | 0.1 secunde | OK. | 10 | 10 | ||
12 | 0.108 secunde | OK. | 10 | 10 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema LongestPath 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ă.