#2246
adobe
Domnul Eboda dorește să se angajeze la firma Adobe. La interviu el primește următoarea problemă. Se dă un șir de caractere format din litere și caracterele *
, +
și -
. Domnul Eboda trebuie să determine câte subsecvențe de lungime 5
sunt anagrame ale cuvântului ADOBE
. Regulile suplimentare sunt că nu se face distincție între literele mari și cele mici și în plus, caracterul +
poate suplini oricare consoană, caracterul -
suplinește orice vocală, iar *
suplinește orice literă. Cu aceste reguli putem spune că următoarele secvențe de cinci caractere sunt anagrame ale cuvântului adobe
: aeobd
, dBoAE
, db---
, Ae-++
, *****
, ++---
, ad*-+
.
-
Problema | adobe | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.2 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53790006 | Utilizator | |
Fișier | adobe.cpp | Dimensiune | 1.22 KB |
Data încărcării | 11 Noiembrie 2024, 20:11 | Scor / rezultat | Eroare de compilare |
adobe.cpp:4:1: error: expected unqualified-id before '{' token { ^ adobe.cpp: In function 'int adobe(char*)': adobe.cpp:15:12: warning: array subscript has type 'char' [-Wchar-subscripts] fr[s[i]]++; ^ adobe.cpp:16:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0;i<strlen(s);i++) ^ adobe.cpp:18:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['a']) ^ adobe.cpp:25:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0;i<strlen(s);i++) ^ adobe.cpp:27:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['d']) ^ adobe.cpp:34:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0;i<strlen(s);i++) ^ adobe.cpp:36:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['o']) ^ adobe.cpp:43:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0;i<strlen(s);i++) ^ adobe.cpp:45:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['b']) ^ adobe.cpp:52:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0;i<strlen(s);i++) ^ adobe.cpp:54:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['e']) ^ adobe.cpp: In function 'int main()': adobe.cpp:66:5: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(s); ^ adobe.cpp:66:11: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(s); ^ adobe.cpp:67:29: warning: left operand of comma operator has no effect [-Wunused-value] for(int i=0;i,strlen(s)-5;i++) ^ adobe.cpp:66:12: warning: ignoring return value of 'char* gets(char*)', declared with attribute warn_unused_result [-Wunused-result] gets(s); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema adobe 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ă.