#3655
Distanta de editare
Se dau două șiruri de caractere s
și t
. Asupra șirului s
se pot aplica în mod repetat operațiile:
Pornind de la șirul s
se cere să se obțină șirul t
aplicând de un număr minim de ori operațiile date.
Folclorul informatic
Problema | Distanta de editare | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53157566 | Utilizator | |
Fișier | distanta_de_editare.cpp | Dimensiune | 867 B |
Data încărcării | 19 Octombrie 2024, 13:41 | Scor / rezultat | Eroare de compilare |
distanta_de_editare.cpp: In function 'int levenshteinRecursive(char&, char&, int, int)': distanta_de_editare.cpp:18:16: error: invalid types 'char[int]' for array subscript if (str1[m - 1] == str2[n - 1]) { ^ distanta_de_editare.cpp:18:31: error: invalid types 'char[int]' for array subscript if (str1[m - 1] == str2[n - 1]) { ^ distanta_de_editare.cpp: In function 'int main()': distanta_de_editare.cpp:43:2: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(str1); ^ distanta_de_editare.cpp:43:11: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(str1); ^ distanta_de_editare.cpp:44:2: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(str2); ^ distanta_de_editare.cpp:44:11: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(str2); ^ distanta_de_editare.cpp:48:22: error: 's1' was not declared in this scope str1, str2, strlen(s1), strlen(s2)); ^ distanta_de_editare.cpp:48:34: error: 's2' was not declared in this scope str1, str2, strlen(s1), strlen(s2)); ^ distanta_de_editare.cpp:43:12: warning: ignoring return value of 'char* gets(char*)', declared with attribute warn_unused_result [-Wunused-result] gets(str1); ^ distanta_de_editare.cpp:44:12: warning: ignoring return value of 'char* gets(char*)', declared with attribute warn_unused_result [-Wunused-result] gets(str2); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Distanta de editare 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ă.