#3423
ctcmax
Se dă un graf orientat cu n
vârfuri și m
arce prin lista arcelor. Afișați componentele tare conexe formate din număr maxim de vârfuri.
Problema | ctcmax | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #55027185 | Utilizator | |
Fișier | ctcmax.cpp | Dimensiune | 1.47 KB |
Data încărcării | 17 Decembrie 2024, 10:59 | Scor / rezultat | Eroare de compilare |
ctcmax.cpp:5:20: error: expected initializer before 'stiva' vector<int> g[102] stiva , t[102] , showcase[102]; ^ ctcmax.cpp: In function 'void citire()': ctcmax.cpp:17:9: error: 'g' was not declared in this scope g[x].push_back(y); ^ ctcmax.cpp:18:9: error: 't' was not declared in this scope t[y].push_back(x); ^ ctcmax.cpp: In function 'void dfs_n(int)': ctcmax.cpp:25:23: error: 'g' was not declared in this scope for(int i = 0 ; i<g[nod].size() ;i++) ^ ctcmax.cpp:28:5: error: 'stiva' was not declared in this scope stiva.push_back(nod); ^ ctcmax.cpp: In function 'void dfs_t(int, int)': ctcmax.cpp:34:23: error: 't' was not declared in this scope for(int i = 0 ; i<t[nod].size();i++) ^ ctcmax.cpp: In function 'int main()': ctcmax.cpp:46:17: error: 'stiva' was not declared in this scope for(int i = stiva.size() - 1 ; i>=0 ; i--) ^ ctcmax.cpp:54:9: error: 'showcase' was not declared in this scope showcase[vizitat_t[i]].push_back(i); ^ ctcmax.cpp:58:12: error: 'showcase' was not declared in this scope if(showcase[i].size() > mx) ^ ctcmax.cpp:62:12: error: 'showcase' was not declared in this scope if(showcase[i].size() == mx) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema ctcmax 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ă.