Se dau două șiruri de caractere, litere mici ale alfabetului englez. Să se determine lungimea celui mai lung subșir comun.
Problema | LungimeSubsirComunMaximal | Operații I/O |
lungimesubsircomunmaximal.in /lungimesubsircomunmaximal.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #51283657 | Utilizator | |
Fișier | lungimesubsircomunmaximal.cpp | Dimensiune | 562 B |
Data încărcării | 04 Iunie 2024, 09:09 | Scor / rezultat | Eroare de compilare |
lungimesubsircomunmaximal.cpp:3:14: error: variable 'std::ifstream fin' has initializer but incomplete type ifstream fin ("lungimesubsircomunmaximal.in"); ^ lungimesubsircomunmaximal.cpp:4:15: error: variable 'std::ofstream fout' has initializer but incomplete type ofstream fout ("lungimesubsircomunmaximal.out"); ^ lungimesubsircomunmaximal.cpp:8:18: error: array bound is not an integer constant before ']' token int pasi[nMAX + 1][nMAX + 1]; ^ lungimesubsircomunmaximal.cpp:8:28: error: array bound is not an integer constant before ']' token int pasi[nMAX + 1][nMAX + 1]; ^ lungimesubsircomunmaximal.cpp: In function 'int main()': lungimesubsircomunmaximal.cpp:16:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (i = 0; i < a.size(); ++i) ^ lungimesubsircomunmaximal.cpp:18:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (j = 0; j < b.size(); ++j) ^ lungimesubsircomunmaximal.cpp:20:13: error: 'pasi' was not declared in this scope pasi[i+1][j+1] = pasi[i][j] + 1; ^ lungimesubsircomunmaximal.cpp:22:13: error: 'pasi' was not declared in this scope pasi[i+1][j+1] = max(pasi[i+1][j], pasi[i][j+1]); ^ lungimesubsircomunmaximal.cpp:25:12: error: 'pasi' was not declared in this scope fout << pasi[a.size()][b.size()]; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema LungimeSubsirComunMaximal 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ă.