#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 | #53780602 | Utilizator | |
Fișier | adobe.cpp | Dimensiune | 1.29 KB |
Data încărcării | 11 Noiembrie 2024, 16:54 | Scor / rezultat | Eroare de compilare |
adobe.cpp:14:24: error: empty character constant else if(fr['']) ^ adobe.cpp:15:20: error: empty character constant fr['']--; ^ adobe.cpp:21:24: error: empty character constant else if(fr['']) ^ adobe.cpp:22:20: error: empty character constant fr['']--; ^ adobe.cpp:28:24: error: empty character constant else if(fr['']) ^ adobe.cpp:29:20: error: empty character constant fr['']--; ^ adobe.cpp:35:24: error: empty character constant else if(fr['']) ^ adobe.cpp:36:20: error: empty character constant fr['']--; ^ adobe.cpp:42:24: error: empty character constant else if(fr['']) ^ adobe.cpp: In function 'int adobe(char)': adobe.cpp:8:15: error: invalid types 'char[char]' for array subscript fr[s[i]]++; ^ adobe.cpp:11:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['a']) ^ adobe.cpp:18:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['d']) ^ adobe.cpp:25:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['o']) ^ adobe.cpp:32:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['b']) ^ adobe.cpp:39:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(!fr['e']) ^ adobe.cpp: In function 'int main()': adobe.cpp:54:5: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(s); ^ adobe.cpp:54:11: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(s); ^ adobe.cpp:55:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<=strlen(s);i++) ^ adobe.cpp:58:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<=strlen(s)-4;i++) ^ adobe.cpp:59:20: error: invalid conversion from 'char*' to 'char' [-fpermissive] nr+=adobe(s+i); ^ adobe.cpp:4:5: error: initializing argument 1 of 'int adobe(char)' [-fpermissive] int adobe(char s) ^ adobe.cpp:54: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ă.