#419
Subgraf1
Se dă lista muchiilor unui graf neorientat cu n
vârfuri, etichetate de la 1
la n
. Din acest graf se elimină toate vârfurile care au gradul minim. Să se determine câte muchii va avea subgraful obținut.
Problema | Subgraf1 | Operații I/O |
subgraf1.in /subgraf1.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54782787 | Utilizator | |
Fișier | subgraf1.cpp | Dimensiune | 787 B |
Data încărcării | 08 Decembrie 2024, 17:39 | Scor / rezultat | Eroare de compilare |
subgraf1.cpp:6:26: error: conflicting declaration 'int g [105]' int n, a[105][105], g[105]; ^ subgraf1.cpp:5:10: error: 'g' has a previous declaration as 'std::ofstream g' ofstream g("subgraf1.out"); ^ subgraf1.cpp: In function 'int main()': subgraf1.cpp:16:10: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') g[i] = 0; ^ subgraf1.cpp:18: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]++; ^ subgraf1.cpp:23:13: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] < gmin) gmin = g[i]; ^ subgraf1.cpp:23:33: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] < gmin) gmin = g[i]; ^ subgraf1.cpp:26:13: error: no match for 'operator[]' (operand types are 'std::ofstream {aka std::basic_ofstream<char>}' and 'int') if(g[i] == gmin) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Subgraf1 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ă.