#1591
Intervalxy
Se dă un şir de N
numere întregi. Definim costul intervalului [x, y]
, unde x
si y
apartin {1, 2, …, N}
, ca fiind suma diferenţelor dintre numărul maxim din șir, aflat în interval şi restul numerelor aflate pe pozițiile x, x+1, …, y
.
De exemplu, pentru şirul 2 4 7 4 3 -1 2 4 6
costul intervalului [3, 6]
este 15
. (explicație: 7-7+ 7-4 + 7-3 + 7+1
= 15
).
Se definesc M
operaţii de forma tip x y
, astfel: Dacă tip este 1
, atunci elementul de pe poziţia x
din șir devine y
. Dacă tip este 2
, atunci să se afişeze costul intervalului [x, y]
.
Să se determine răspunsul pentru fiecare operaţie de tipul 2
.
Info-Oltenia 2015
Problema | Intervalxy | Operații I/O |
intervalxy.in /intervalxy.out
|
---|---|---|---|
Limita timp | 0.2 secunde | Limita memorie |
Total: 32 MB
/
Stivă 2 MB
|
Id soluție | #38024172 | Utilizator | |
Fișier | intervalxy.cpp | Dimensiune | 1.95 KB |
Data încărcării | 27 Septembrie 2022, 18:50 | Scor / rezultat | 100 puncte |
intervalxy.cpp: In function 'int main()': intervalxy.cpp:60:19: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=] scanf("%d", &n); ^ intervalxy.cpp:74:19: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=] scanf("%d", &m); ^ intervalxy.cpp:77:34: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=] scanf("%d%d%d", &c,&x, &y); ^ intervalxy.cpp:77:34: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=] intervalxy.cpp:77:34: warning: format '%d' expects argument of type 'int*', but argument 4 has type 'long long int*' [-Wformat=] intervalxy.cpp:87:17: warning: unused variable 'v1' [-Wunused-variable] int v1= calcul_max(1, 1, p, x, y); ^ intervalxy.cpp:88:17: warning: unused variable 'v2' [-Wunused-variable] int v2= calcul_sum(1, 1, p, x, y); ^ intervalxy.cpp:57:41: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result] freopen("intervalxy.in", "r", stdin); ^ intervalxy.cpp:58:43: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result] freopen("intervalxy.out", "w", stdout); ^ intervalxy.cpp:60:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &n); ^ intervalxy.cpp:69:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &x); ^ intervalxy.cpp:74:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &m); ^ intervalxy.cpp:77:35: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d%d%d", &c,&x, &y); ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
0 | 0 secunde | OK. | 1 | 1 | ||
1 | 0 secunde | OK. | 1 | 1 | ||
2 | 0 secunde | OK. | 1 | 1 | ||
3 | 0 secunde | OK. | 1 | 1 | ||
4 | 0 secunde | OK. | 1 | 1 | ||
5 | 0 secunde | OK. | 2 | 2 | ||
6 | 0 secunde | OK. | 2 | 2 | ||
7 | 0 secunde | OK. | 2 | 2 | ||
8 | 0 secunde | OK. | 2 | 2 | ||
9 | 0 secunde | OK. | 2 | 2 | ||
10 | 0 secunde | OK. | 2 | 2 | ||
11 | 0 secunde | OK. | 2 | 2 | ||
12 | 0.004 secunde | OK. | 2 | 2 | ||
13 | 0.004 secunde | OK. | 2 | 2 | ||
14 | 0.008 secunde | OK. | 2 | 2 | ||
15 | 0.092 secunde | OK. | 5 | 5 | ||
16 | 0.048 secunde | OK. | 5 | 5 | ||
17 | 0.108 secunde | OK. | 5 | 5 | ||
18 | 0.076 secunde | OK. | 5 | 5 | ||
20 | 0.064 secunde | OK. | 5 | 5 | ||
21 | 0.1 secunde | OK. | 5 | 5 | ||
22 | 0.112 secunde | OK. | 5 | 5 | ||
23 | 0.096 secunde | OK. | 5 | 5 | ||
24 | 0.144 secunde | OK. | 5 | 5 | ||
25 | 0.136 secunde | OK. | 6 | 6 | ||
26 | 0.152 secunde | OK. | 6 | 6 | ||
27 | 0.152 secunde | OK. | 6 | 6 | ||
28 | 0.156 secunde | OK. | 6 | 6 | ||
29 | 0.16 secunde | OK. | 6 | 6 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Intervalxy 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ă.