#478
Ciclu
Se dă lista muchiilor unui graf neorientat cu n
vârfuri și un vârf p
. Să se determine un ciclu elementar care conține vârful p
.
Problema | Ciclu | Operații I/O |
ciclu.in /ciclu.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53952503 | Utilizator | |
Fișier | ciclu.cpp | Dimensiune | 1.30 KB |
Data încărcării | 15 Noiembrie 2024, 17:27 | Scor / rezultat | Eroare de compilare |
ciclu.cpp:13:2: error: 'vector' does not name a type vector<int>lant; ^ ciclu.cpp:25:15: error: 'vector' has not been declared void afisare(vector<int>v) ^ ciclu.cpp:25:21: error: expected ',' or '...' before '<' token void afisare(vector<int>v) ^ ciclu.cpp:31:52: error: 'vector' has not been declared void backtracking(unordered_map<int, bool>& used, vector<int>& lant, bool &ok) ^ ciclu.cpp:31:58: error: expected ',' or '...' before '<' token void backtracking(unordered_map<int, bool>& used, vector<int>& lant, bool &ok) ^ ciclu.cpp: In member function 'void<anonymous class>::afisare(int)': ciclu.cpp:27:18: error: 'v' was not declared in this scope for (auto it : v) ^ ciclu.cpp: In member function 'void<anonymous class>::backtracking(std::unordered_map<int, bool>&, int)': ciclu.cpp:33:7: error: 'lant' was not declared in this scope if (lant.back() == p) ^ ciclu.cpp:36:4: error: 'ok' was not declared in this scope ok = true; ^ ciclu.cpp:41:34: error: 'lant' was not declared in this scope if (used[i] == false && graph[lant.back()][i]) ^ ciclu.cpp:45:29: error: 'ok' was not declared in this scope backtracking(used, lant,ok); ^ ciclu.cpp:49:8: error: 'ok' was not declared in this scope if (ok) ^ ciclu.cpp: In member function 'void<anonymous class>::second_element()': ciclu.cpp:60:5: error: 'lant' was not declared in this scope lant.push_back(i); ^ ciclu.cpp: In member function 'void<anonymous class>::problema()': ciclu.cpp:74:3: error: 'lant' was not declared in this scope lant.push_back(p); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Ciclu 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ă.