#3800
DistinctLetters
C++
Scrieți o funcție care returnează numărul de secvențe care au între L
și U
litere distincte. Într-o secvență fiecare literă se va număra o singură dată.
Problema | DistinctLetters | Operații I/O |
distinctletters.in /distinctletters.out
|
---|---|---|---|
Limita timp | 0.05 secunde | Limita memorie |
Total: 64 MB
/
Stivă 16 MB
|
Id soluție | #53950647 | Utilizator | |
Fișier | distinctletters.cpp | Dimensiune | 610 B |
Data încărcării | 15 Noiembrie 2024, 16:29 | Scor / rezultat | 100 puncte |
distinctletters.cpp: In function 'int DistinctLetters(std::string, int, int)': distinctletters.cpp:12:11: warning: array subscript has type 'char' [-Wchar-subscripts] ap[s[0]] ++; ^ distinctletters.cpp:14:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] while (i < s.size()) ^ distinctletters.cpp:16:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (j < s.size() && ((ap[s[j]] == 0 && distinct + 1 <= U) || (ap[s[j]] != 0))) ^ distinctletters.cpp:16:36: warning: array subscript has type 'char' [-Wchar-subscripts] if (j < s.size() && ((ap[s[j]] == 0 && distinct + 1 <= U) || (ap[s[j]] != 0))) ^ distinctletters.cpp:16:76: warning: array subscript has type 'char' [-Wchar-subscripts] if (j < s.size() && ((ap[s[j]] == 0 && distinct + 1 <= U) || (ap[s[j]] != 0))) ^ distinctletters.cpp:18:21: warning: array subscript has type 'char' [-Wchar-subscripts] if (ap[s[j]] == 0) ^ distinctletters.cpp:20:17: warning: array subscript has type 'char' [-Wchar-subscripts] ap[s[j]] ++; ^ distinctletters.cpp:25:15: warning: array subscript has type 'char' [-Wchar-subscripts] ap[s[i]] --; ^ distinctletters.cpp:26:21: warning: array subscript has type 'char' [-Wchar-subscripts] if (ap[s[i]] == 0) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
0 | 0 secunde | OK. | 10 | 10 | ||
1 | 0 secunde | OK. | 10 | 10 | ||
2 | 0 secunde | OK. | 10 | 10 | ||
3 | 0 secunde | OK. | 10 | 10 | ||
4 | 0 secunde | OK. | 10 | 10 | ||
5 | 0 secunde | OK. | 10 | 10 | ||
6 | 0 secunde | OK. | 10 | 10 | ||
7 | 0 secunde | OK. | 10 | 10 | ||
8 | 0 secunde | OK. | 10 | 10 | ||
9 | 0 secunde | OK. | 10 | 10 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema DistinctLetters face parte din a doua categorie. Pentru aceste probleme se folosește un program suport, furnizat de propunătorul problemei. 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ă.