#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 | #54292013 | Utilizator | |
Fișier | gradek.cpp | Dimensiune | 547 B |
Data încărcării | 25 Noiembrie 2024, 08:09 | Scor / rezultat | Eroare de compilare |
gradek.cpp:4:27: error: conflicting declaration 'int g [105]' int n , a[105][105], g[105], k; ^ gradek.cpp:3:35: error: 'g' has a previous declaration as 'std::ofstream g' ifstream f("gradek.in"); ofstream g("gradek.out"); ^ gradek.cpp: In function 'int main()': gradek.cpp:11:8: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') { g[i] = 0; ^ gradek.cpp:13: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:17: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:17: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:20: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:20: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ă.