#417
GradMax
Se dă lista muchiilor unui graf neorientat. Să se afișeze vârfurile de grad maxim.
Problema | GradMax | Operații I/O |
gradmax.in /gradmax.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54799557 | Utilizator | |
Fișier | gradmax.cpp | Dimensiune | 840 B |
Data încărcării | 09 Decembrie 2024, 09:42 | Scor / rezultat | Eroare de compilare |
gradmax.cpp:7:27: error: conflicting declaration 'int g [105]' int n , a[105][105], g[105]; ^ gradmax.cpp:5:10: error: 'g' has a previous declaration as 'std::ofstream g' ofstream g("gradmax.out"); ^ gradmax.cpp: In function 'int main()': gradmax.cpp:19:10: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') g[i] = 0; ^ gradmax.cpp:22:18: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') g[i] ++; ^ gradmax.cpp:26:15: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') g << g[i] << " "; ^ gradmax.cpp:30:13: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] > gmax) ^ gradmax.cpp:31:21: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') gmax = g[i], nrv = 1; ^ gradmax.cpp:33:17: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == gmax) ^ gradmax.cpp:38:13: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == gmax) ^ gradmax.cpp:42:9: error: expected ';' before 'g' g.close() ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema GradMax 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ă.