#4564
Se dă o matrice de mărime N pe N care conține litere ale alfabetului englez. Definim un drum dreapta-jos ca fiind un șir de celule ale matricei care începe cu celula (1, 1), se termină cu celula (N, N), iar pentru fiecare celulă (x, y) din drum (exceptând ultima), succesoarea sa este fie (x+1, y), fie (x, y+1). Spunem că șirul de caractere generat de un drum în matrice este șirul obținut prin concatenarea valorilor celulelor drumului în ordine.
Să se găsească 2 drumuri dreapta-jos care nu se intersectează (decât în celulele (1, 1) și (N, N)) pentru care coeficientul de similaritate este maxim. Coeficientul de similaritate a 2 drumuri reprezintă numărul de poziții i pentru care a[i] = b[i], 0 ≤ i < lungime(a), lungime(b), unde a și b sunt șirurile generate de cele 2 drumuri.
Concursul Interjudețean de Matematică și Informatică Grigore Moisil, 2023
| Problema | DouaDrumuri | Operații I/O |
douadrumuri.in/douadrumuri.out
|
|---|---|---|---|
| Limita timp | 0.5 secunde | Limita memorie |
Total: 256 MB
/
Stivă 8 MB
|
| Id soluție | #63249131 | Utilizator | |
| Fișier | douadrumuri.cpp | Dimensiune | 1.54 KB |
| Data încărcării | 23 Februarie 2026, 14:45 | Scor/rezultat | Eroare de compilare |
douadrumuri.cpp: In function 'int main()': douadrumuri.cpp:31:60: error: no matching function for call to 'max(int64_t&, int16_t&)' bst = max( bst, psb[ x1 ][ x2 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:31:60: note: candidates are: In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template argument deduction/substitution failed: douadrumuri.cpp:31:60: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 ][ x2 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template argument deduction/substitution failed: douadrumuri.cpp:31:60: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 ][ x2 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>) max(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template argument deduction/substitution failed: douadrumuri.cpp:31:60: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 ][ x2 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare) max(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template argument deduction/substitution failed: douadrumuri.cpp:31:60: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 ][ x2 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:32:64: error: no matching function for call to 'max(int64_t&, int16_t&)' bst = max( bst, psb[ x1 - 1 ][ x2 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:32:64: note: candidates are: In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template argument deduction/substitution failed: douadrumuri.cpp:32:64: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 - 1 ][ x2 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template argument deduction/substitution failed: douadrumuri.cpp:32:64: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 - 1 ][ x2 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>) max(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template argument deduction/substitution failed: douadrumuri.cpp:32:64: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 - 1 ][ x2 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare) max(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template argument deduction/substitution failed: douadrumuri.cpp:32:64: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 - 1 ][ x2 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:33:64: error: no matching function for call to 'max(int64_t&, int16_t&)' bst = max( bst, psb[ x1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:33:64: note: candidates are: In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template argument deduction/substitution failed: douadrumuri.cpp:33:64: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template argument deduction/substitution failed: douadrumuri.cpp:33:64: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>) max(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template argument deduction/substitution failed: douadrumuri.cpp:33:64: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare) max(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template argument deduction/substitution failed: douadrumuri.cpp:33:64: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:34:68: error: no matching function for call to 'max(int64_t&, int16_t&)' bst = max( bst, psb[ x1 - 1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ douadrumuri.cpp:34:68: note: candidates are: In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template argument deduction/substitution failed: douadrumuri.cpp:34:68: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 - 1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/istream:38, from /usr/include/c++/4.8/sstream:38, from /usr/include/c++/4.8/complex:45, from /usr/include/c++/4.8/ccomplex:38, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:52, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template argument deduction/substitution failed: douadrumuri.cpp:34:68: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int16_t {aka short int}') bst = max( bst, psb[ x1 - 1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>) max(initializer_list<_Tp> __l) ^ /usr/include/c++/4.8/bits/stl_algo.h:4231:5: note: template argument deduction/substitution failed: douadrumuri.cpp:34:68: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 - 1 ][ x2 - 1 ][ stp - 1 ] ) ; ^ In file included from /usr/include/c++/4.8/algorithm:62:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from douadrumuri.cpp:1: /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare) max(initializer_list<_Tp> __l, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algo.h:4236:5: note: template argument deduction/substitution failed: douadrumuri.cpp:34:68: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' bst = max( bst, psb[ x1 - 1 ][ x2 - 1 ][ stp - 1 ] ) ; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema DouaDrumuri 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ă.