#4646
cb1
Se dă un șir ordonat crescător a
1
, a
2
, …, a
n
de numere întregi. Asupra șirului putem efectua trei tipuri de interogări:
1 x
– Câte numere din șir sunt mai mici sau egale decât x
?2 x
– Câte numere din șir sunt mai strict mai mari decât x
?3 x
– De câte ori apare în șir valoarea x
?Să se răspundă la Q
interogări.
Folclorul informatic
Problema | cb1 | Operații I/O |
cb1.in /cb1.out
|
---|---|---|---|
Limita timp | 0.4 secunde | Limita memorie |
Total: 4 MB
/
Stivă 2 MB
|
Id soluție | #54971119 | Utilizator | |
Fișier | cb1.cpp | Dimensiune | 1.67 KB |
Data încărcării | 14 Decembrie 2024, 10:49 | Scor / rezultat | Eroare de compilare |
cb1.cpp:7:1: error: expected ',' or ';' before 'int' int a[200000], n, m; ^ cb1.cpp: In function 'int lowerBoundSearch(int)': cb1.cpp:11:22: error: 'n' was not declared in this scope int st = 0, dr = n - 1; ^ cb1.cpp:16:13: error: 'a' was not declared in this scope if (a[mid] >= val) { ^ cb1.cpp: In function 'int upperBoundSearch(int)': cb1.cpp:29:22: error: 'n' was not declared in this scope int st = 0, dr = n - 1; ^ cb1.cpp:34:13: error: 'a' was not declared in this scope if (a[mid] <= val) { ^ cb1.cpp: In function 'int elementeContinuteInInterval(int)': cb1.cpp:46:13: error: 'a' was not declared in this scope if (y > a[n - 1]) { ^ cb1.cpp:46:15: error: 'n' was not declared in this scope if (y > a[n - 1]) { ^ cb1.cpp:49:13: error: 'a' was not declared in this scope if (y < a[0]) { ^ cb1.cpp: In function 'int main()': cb1.cpp:59:12: error: 'n' was not declared in this scope fin >> n; ^ cb1.cpp:61:16: error: 'a' was not declared in this scope fin >> a[i]; ^ cb1.cpp:63:10: error: 'a' was not declared in this scope sort(a, a + n); ^ cb1.cpp:65:10: error: 'm' was not declared in this scope fin>>m; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema cb1 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ă.