#1620
Interesant
Se consideră o mulțime S
care conține N
șiruri de caractere formate din litere mici ale alfabetului englezesc.
Un șir de caractere se numește interesant în raport cu celelalte șiruri ale mulțimii, dacă nu există un alt șir în mulțime care să-l conțină ca subșir. De exemplu, dacă mulțimea S
conține șirurile abc
, bde
și abcdef
, atunci singurul șir interesant este abcdef
deoarece abc
și bde
nu îl conțin ca subșir. Mai mult, abc
și bde
sunt subșiruri în abcdef
, deci nu sunt interesante.
Fiind dată o mulțime S
formată din N
șiruri de caractere se cere:
S
.OJI 2016, Clasa a X-a
Problema | Interesant | Operații I/O |
interesant.in /interesant.out
|
---|---|---|---|
Limita timp | 1.5 secunde | Limita memorie |
Total: 8 MB
/
Stivă 8 MB
|
Id soluție | #54633925 | Utilizator | |
Fișier | interesant.cpp | Dimensiune | 1.96 KB |
Data încărcării | 04 Decembrie 2024, 10:37 | Scor / rezultat | 20 puncte |
interesant.cpp: In function 'bool comparare(std::string, std::string)': interesant.cpp:16:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0; i<b.size(); i++) ^ interesant.cpp:18:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (i==b.size()) ^ interesant.cpp: In function 'void citire()': interesant.cpp:35:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (b.size()>maxim) ^ interesant.cpp:40:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] else if (b.size()==maxim) ^ interesant.cpp: In function 'bool subsir(std::string, std::string)': interesant.cpp:52:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0; i<b.size();i++) ^ interesant.cpp:55:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int j=0; j<a.size(); j++) ^ interesant.cpp: In function 'void afisare()': interesant.cpp:74:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0; i<cuvinte.size(); i++) ^ interesant.cpp:80:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0; i<cuvinte.size(); i++) ^ interesant.cpp: In function 'void cerinta2()': interesant.cpp:89:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i=0; i<cuvinte.size()-1; i++) ^ interesant.cpp:91:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int j=i+1; j<cuvinte.size(); j++) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
0 | 0 secunde | OK. | 5 | 5 | ||
1 | 0 secunde | OK. | 5 | 5 | ||
2 | 0 secunde | OK. | 5 | 5 | ||
3 | 0 secunde | OK. | 5 | 5 | ||
4 | 0 secunde | Raspuns gresit. | 3 | 0 | ||
5 | 0.016 secunde | Raspuns gresit. | 3 | 0 | ||
6 | 0 secunde | Raspuns gresit. | 3 | 0 | ||
7 | 0.032 secunde | Raspuns gresit. | 3 | 0 | ||
8 | 0.064 secunde | Raspuns gresit. | 4 | 0 | ||
9 | 0.044 secunde | Raspuns gresit. | 4 | 0 | ||
10 | 0.052 secunde | Raspuns gresit. | 4 | 0 | ||
11 | 0.06 secunde | Raspuns gresit. | 4 | 0 | ||
12 | 0.04 secunde | Raspuns gresit. | 4 | 0 | ||
13 | 0.084 secunde | Raspuns gresit. | 5 | 0 | ||
14 | 0.008 secunde | Raspuns gresit. | 5 | 0 | ||
15 | 0.028 secunde | Raspuns gresit. | 5 | 0 | ||
16 | 0.016 secunde | Raspuns gresit. | 5 | 0 | ||
17 | 0.124 secunde | Raspuns gresit. | 5 | 0 | ||
18 | 0.064 secunde | Raspuns gresit. | 5 | 0 | ||
19 | 0.048 secunde | Raspuns gresit. | 6 | 0 | ||
20 | 0.104 secunde | Raspuns gresit. | 6 | 0 | ||
21 | 0.18 secunde | Raspuns gresit. | 6 | 0 | ||
Punctaj total | 20 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Interesant 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ă.