#4068
GradeK
Se dă lista muchiilor unui graf neorientat și un nod k
. Să se determine nodurile din graf care au gradul egal cu gradul nodului k
.
Problema | GradeK | Operații I/O |
gradek.in /gradek.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53778037 | Utilizator | |
Fișier | gradek.cpp | Dimensiune | 564 B |
Data încărcării | 11 Noiembrie 2024, 15:45 | Scor / rezultat | Eroare de compilare |
gradek.cpp:6:27: error: conflicting declaration 'int g [105]' int n , a[105][105], g[105], k; ^ gradek.cpp:5:10: error: 'g' has a previous declaration as 'std::ofstream g' ofstream g("gradek.out"); ^ gradek.cpp: In function 'int main()': gradek.cpp:12:8: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') { g[i] = 0; ^ gradek.cpp:14:31: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(a[i][j] == 1) g[i] ++; ^ gradek.cpp:18:7: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == g[k]) cnt ++; ^ gradek.cpp:18:15: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == g[k]) cnt ++; ^ gradek.cpp:21:7: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == g[k]) ^ gradek.cpp:21:15: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == g[k]) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema GradeK 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ă.