#4643
Minotaur
Doamna profesoară de limba română i-a recomandat lui Tedi să citească “Legendele Olimpului”. Săptămâna trecută ea a citit legenda lui Tezeu și a Minotaurului. În aceasta, eroul Tezeu hotărăște să intre în labirintul ce ascunde legendara bestie pe jumătate om și pe jumătate taur, Minotaurul, cu scopul de a-l ucide și de a câștiga mâna prințesei cretane, Ariadna. Labirintul Minotaurului este fermecat, deoarece este construit de sculptorul Dedal după niște reguli recursive. labirintului, începând din colțul din stânga jos al matricei, adică din celula cu coordonatele (2
N
, 1)
. Cunoscându-se N
și P
, ajutați-l pe Tezeu să afle linia și coloana celulei în care se află Minotaurul.
CNER CODE clasa a X-a
Problema | Minotaur | Operații I/O |
minotaur.in /minotaur.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 32 MB
/
Stivă 8 MB
|
Id soluție | #51170708 | Utilizator | |
Fișier | minotaur.cpp | Dimensiune | 1.12 KB |
Data încărcării | 28 Mai 2024, 11:09 | Scor / rezultat | Eroare de compilare |
minotaur.cpp: In function 'std::vector<std::pair<int, int> > construct_path(int)': minotaur.cpp:16:22: error: expected unqualified-id before '[' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:16:22: error: expected ';' before '[' token minotaur.cpp:16:23: error: 'r' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:16:26: error: 'c' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In lambda function: minotaur.cpp:16:29: error: expected '{' before ':' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In function 'std::vector<std::pair<int, int> > construct_path(int)': minotaur.cpp:16:29: error: expected ';' before ':' token minotaur.cpp:16:29: error: expected primary-expression before ':' token minotaur.cpp:16:29: error: expected ')' before ':' token minotaur.cpp:16:29: error: expected primary-expression before ':' token minotaur.cpp:16:29: error: expected ';' before ':' token minotaur.cpp:19:22: error: expected unqualified-id before '[' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:19:22: error: expected ';' before '[' token minotaur.cpp:19:23: error: 'r' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:19:26: error: 'c' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In lambda function: minotaur.cpp:19:29: error: expected '{' before ':' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In function 'std::vector<std::pair<int, int> > construct_path(int)': minotaur.cpp:19:29: error: expected ';' before ':' token minotaur.cpp:19:29: error: expected primary-expression before ':' token minotaur.cpp:19:29: error: expected ')' before ':' token minotaur.cpp:19:29: error: expected primary-expression before ':' token minotaur.cpp:19:29: error: expected ';' before ':' token minotaur.cpp:22:22: error: expected unqualified-id before '[' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:22:22: error: expected ';' before '[' token minotaur.cpp:22:23: error: 'r' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:22:26: error: 'c' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In lambda function: minotaur.cpp:22:29: error: expected '{' before ':' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In function 'std::vector<std::pair<int, int> > construct_path(int)': minotaur.cpp:22:29: error: expected ';' before ':' token minotaur.cpp:22:29: error: expected primary-expression before ':' token minotaur.cpp:22:29: error: expected ')' before ':' token minotaur.cpp:22:29: error: expected primary-expression before ':' token minotaur.cpp:22:29: error: expected ';' before ':' token minotaur.cpp:25:22: error: expected unqualified-id before '[' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:25:22: error: expected ';' before '[' token minotaur.cpp:25:23: error: 'r' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp:25:26: error: 'c' was not declared in this scope for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In lambda function: minotaur.cpp:25:29: error: expected '{' before ':' token for (const auto& [r, c] : smaller_path) { ^ minotaur.cpp: In function 'std::vector<std::pair<int, int> > construct_path(int)': minotaur.cpp:25:29: error: expected ';' before ':' token minotaur.cpp:25:29: error: expected primary-expression before ':' token minotaur.cpp:25:29: error: expected ')' before ':' token minotaur.cpp:25:29: error: expected primary-expression before ':' token minotaur.cpp:25:29: error: expected ';' before ':' token minotaur.cpp:13:9: warning: unused variable 'size' [-Wunused-variable] int size = 1 << (N - 1); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Minotaur 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ă.