#937
Hercule
Hercule trebuie sa strabată un labirint cu capcane reprezentat de o matrice cu n
linii și m
coloane. Pentru fiecare celula a labirintului, se cunoaște timpul exprimat în minute după care celula respectivă devine capcană. După ce o celula devine capcana, Hercule piere dacă intră în acea celulă.
Sa se afișeze numarul total de drumuri pe care le poate urma Hercule prin labirint, astfel încât Hercule să nu piară.
Problema | Hercule | Operații I/O |
hercule.in /hercule.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #52873308 | Utilizator | |
Fișier | hercule.cpp | Dimensiune | 1.32 KB |
Data încărcării | 11 Octombrie 2024, 12:26 | Scor / rezultat | Eroare de compilare |
hercule.cpp: In function 'void bt(int, int, int)': hercule.cpp:12:25: error: lvalue required as left operand of assignment if (lin == n && col = m) ^ hercule.cpp:14:19: error: 'b' was not declared in this scope tipar(b); ^ hercule.cpp:14:20: error: 'tipar' was not declared in this scope tipar(b); ^ hercule.cpp:21:23: error: 'lim' was not declared in this scope d[k][0] = lim; ^ hercule.cpp:30:29: error: 'b' was not declared in this scope bt(k+1, b, c); ^ hercule.cpp: In function 'void afis(int)': hercule.cpp:41:33: error: conversion from 'int' to non-scalar type 'std::vector<int>' requested vector<int> b[100][100] = {0}; ^ hercule.cpp:44:29: error: no match for 'operator=' (operand types are 'std::vector<int>' and 'int') b[d[i][0]][d[i][1]] = i; ^ hercule.cpp:44:29: note: candidates are: In file included from /usr/include/c++/4.8/vector:69:0, from hercule.cpp:3: /usr/include/c++/4.8/bits/vector.tcc:160:5: note: std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(const std::vector<_Tp, _Alloc>&) [with _Tp = int; _Alloc = std::allocator<int>] vector<_Tp, _Alloc>:: ^ /usr/include/c++/4.8/bits/vector.tcc:160:5: note: no known conversion for argument 1 from 'int' to 'const std::vector<int>&' In file included from /usr/include/c++/4.8/vector:64:0, from hercule.cpp:3: /usr/include/c++/4.8/bits/stl_vector.h:439:7: note: std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(std::vector<_Tp, _Alloc>&&) [with _Tp = int; _Alloc = std::allocator<int>] operator=(vector&& __x) noexcept(_Alloc_traits::_S_nothrow_move()) ^ /usr/include/c++/4.8/bits/stl_vector.h:439:7: note: no known conversion for argument 1 from 'int' to 'std::vector<int>&&' /usr/include/c++/4.8/bits/stl_vector.h:461:7: note: std::vector<_Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(std::initializer_list<_Tp>) [with _Tp = int; _Alloc = std::allocator<int>] operator=(initializer_list<value_type> __l) ^ /usr/include/c++/4.8/bits/stl_vector.h:461:7: note: no known conversion for argument 1 from 'int' to 'std::initializer_list<int>' hercule.cpp:54:27: error: cannot bind 'std::ostream {aka std::basic_ostream<char>}' lvalue to 'std::basic_ostream<char>&&' cout << b[i][j] << " "; ^ In file included from /usr/include/c++/4.8/iostream:39:0, from hercule.cpp:1: /usr/include/c++/4.8/ostream:602:5: error: initializing argument 1 of 'std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&&, const _Tp&) [with _CharT = char; _Traits = std::char_traits<char>; _Tp = std::vector<int>]' operator<<(basic_ostream<_CharT, _Traits>&& __os, const _Tp& __x) ^ hercule.cpp: In function 'int main()': hercule.cpp:67:29: error: expected primary-expression before '=' token for (int j = 1; j < =m; j++) ^ hercule.cpp:69:16: error: expected primary-expression before ')' token bt(1, 1, 1,); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Hercule 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ă.