#4532
SumOfAll
Se dă un vector de N
numere naturale. Se dau deasemenea Q
query-uri de forma l r
, unde se cere suma tuturor subsecvențelor de elemente consecutive. Mai formal, pentru fiecare query [l, r]
, se cere rezultatul funcției F(l, r)
= \( \sum_{i=l}^{r} \sum_{j=i}^{r} \) S(i, j)
, unde S(l, r)
este suma tuturor elementelor din secvența [l, r]
.
Problema | SumOfAll | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 1.5 secunde | Limita memorie |
Total: 128 MB
/
Stivă 8 MB
|
Id soluție | #50081551 | Utilizator | |
Fișier | sumofall.cpp | Dimensiune | 2.16 KB |
Data încărcării | 26 Martie 2024, 14:04 | Scor / rezultat | 95 puncte |
sumofall.cpp:3:36: warning: large integer implicitly truncated to unsigned type [-Woverflow] unsigned int mod = ((1LL * 1) << 32); ^ sumofall.cpp: In function 'int main()': sumofall.cpp:25:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 1; i <= n; i ++) ^ sumofall.cpp:31:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 1; i <= k; i ++) ^ sumofall.cpp:33:21: warning: variable 'ind' set but not used [-Wunused-but-set-variable] int st, dr, ind; ^ sumofall.cpp:42:38: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j = 1; j <= block_size + 1; j ++) ^ sumofall.cpp:45:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 0; i < mo[j].size(); i ++) ^ sumofall.cpp:73:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i = 1; i <= k; i ++) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
0 | 0 secunde | OK. | 5 | 5 | ||
1 | 0 secunde | Raspuns gresit. | 5 | 0 | ||
2 | 0 secunde | OK. | 5 | 5 | ||
3 | 0 secunde | OK. | 5 | 5 | ||
4 | 0 secunde | OK. | 5 | 5 | ||
5 | 0 secunde | OK. | 5 | 5 | ||
6 | 0.004 secunde | OK. | 5 | 5 | ||
7 | 0.004 secunde | OK. | 5 | 5 | ||
8 | 0.008 secunde | OK. | 5 | 5 | ||
9 | 0.048 secunde | OK. | 5 | 5 | ||
10 | 0.112 secunde | OK. | 5 | 5 | ||
11 | 0.368 secunde | OK. | 5 | 5 | ||
12 | 0.908 secunde | OK. | 5 | 5 | ||
13 | 0.904 secunde | OK. | 5 | 5 | ||
14 | 0.904 secunde | OK. | 5 | 5 | ||
15 | 0.904 secunde | OK. | 5 | 5 | ||
16 | 0.904 secunde | OK. | 5 | 5 | ||
17 | 0.908 secunde | OK. | 5 | 5 | ||
18 | 0.908 secunde | OK. | 5 | 5 | ||
19 | 0.908 secunde | OK. | 5 | 5 | ||
Punctaj total | 95 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema SumOfAll 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ă.