#4672
CountSeqMatch
Se dau două șiruri de numere întregi a = a[1], a[2], ..., a[n]
și b = b[1], b[2], ..., b[m]
, unde m < n
. Spunem că o secvență a[i..i+m-1] = a[i], a[i+1], ..., a[i+m-1]
se potrivește cu b
dacă b
conține, într-o ordine oarecare, toate numerele din secvența a[i..i+m-1]
. De exemplu, dacă a = 3,5,1,2,2,5,3,8,1,2,3,5,2,1,1
și b = 2,2,1,5,3
, atunci secvențele 3,5,1,2,2
, 1,2,2,5,3
, 1,2,3,5,2
și 2,3,5,2,1
se potrivesc cu b
, pe când secvența 3,5,2,1,1
nu se potrivește cu b
. Să se determine câte secvențe din a
de lungime m
se potrivesc cu b
.
Problemă de interviu
Problema | CountSeqMatch | Operații I/O |
countseqmatch.in /countseqmatch.out
|
---|---|---|---|
Limita timp | 0.2 secunde | Limita memorie |
Total: 16 MB
/
Stivă 8 MB
|
Id soluție | #53575063 | Utilizator | |
Fișier | countseqmatch.cpp | Dimensiune | 852 B |
Data încărcării | 05 Noiembrie 2024, 15:10 | Scor / rezultat | Eroare de compilare |
countseqmatch.cpp: In function 'int main()': countseqmatch.cpp:13:17: error: invalid types 'int[int]' for array subscript f>>a[i]; ^ countseqmatch.cpp:14:12: error: expected ';' before '{' token a{i}=a[i]=50000; ^ countseqmatch.cpp:14:14: warning: statement has no effect [-Wunused-value] a{i}=a[i]=50000; ^ countseqmatch.cpp:14:15: error: expected primary-expression before '=' token a{i}=a[i]=50000; ^ countseqmatch.cpp:14:19: error: invalid types 'int[int]' for array subscript a{i}=a[i]=50000; ^ countseqmatch.cpp:30:16: error: expected '(' before '[' token for[a[i]++]; ^ countseqmatch.cpp:30:18: error: expected ',' before '[' token for[a[i]++]; ^ countseqmatch.cpp:30:18: error: expected identifier before '[' token countseqmatch.cpp: In lambda function: countseqmatch.cpp:30:24: error: expected '{' before ';' token for[a[i]++]; ^ countseqmatch.cpp: In function 'int main()': countseqmatch.cpp:31:10: error: expected primary-expression before '}' token } ^ countseqmatch.cpp:31:10: error: expected ';' before '}' token countseqmatch.cpp:31:10: error: expected primary-expression before '}' token countseqmatch.cpp:31:10: error: expected ')' before '}' token countseqmatch.cpp:31:10: error: expected primary-expression before '}' token countseqmatch.cpp:31:10: error: expected ';' before '}' token countseqmatch.cpp:32:19: error: invalid types 'int[int]' for array subscript while(fra[a[i]]>frb[a[i]]) ^ countseqmatch.cpp:32:29: error: invalid types 'int[int]' for array subscript while(fra[a[i]]>frb[a[i]]) ^ countseqmatch.cpp:34:24: error: invalid types 'int[int]' for array subscript fra[a[i]]--; ^ countseqmatch.cpp:36:13: error: expected ';' before '}' token } ^ countseqmatch.cpp:39:17: error: 'nr' was not declared in this scope g<<nr; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema CountSeqMatch 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ă.