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 | #51230546 | Utilizator | |
Fișier | lungimesubsircomunmaximal.cpp | Dimensiune | 795 B |
Data încărcării | 31 Mai 2024, 09:05 | Scor / rezultat | 100 puncte |
lungimesubsircomunmaximal.cpp: In function 'int main()': lungimesubsircomunmaximal.cpp:15:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i < strlen(s2); i++) dp[0][i] = (s2[i] == s1[0]); ^ lungimesubsircomunmaximal.cpp:16:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i < strlen(s1); i++) dp[i][0] = (s2[0] == s1[i]); ^ lungimesubsircomunmaximal.cpp:17:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 1; i < strlen(s1); i++){ ^ lungimesubsircomunmaximal.cpp:18:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j = 1; j < strlen(s2); j++){ ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | OK. | 20 | 20 | Exemplu | |
2 | 0 secunde | OK. | 20 | 20 | ||
3 | 0 secunde | OK. | 20 | 20 | ||
4 | 0 secunde | OK. | 20 | 20 | ||
5 | 0.004 secunde | OK. | 20 | 20 | ||
Punctaj total | 100 |
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ă.