#2273
ssplit
Se consideră un șir a[1]
, a[2]
, …, a[n]
de numere naturale nenule. Pentru doi indici 1 ≤ i < j < n
, notăm cu X = a[1] + a[2] + ... + a[i]
, Y = a[i+1] + a[i+2] + ... + a[j]
și Z = a[j+1] + a[j+2] + ... + a[n]
. Să se determine doi indici i
și j
astfel încât diferența max(X, Y, Z) - min(X, Y, Z)
să fie minimă.
Problema | ssplit | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.2 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53144270 | Utilizator | |
Fișier | ssplit.cpp | Dimensiune | 986 B |
Data încărcării | 18 Octombrie 2024, 21:38 | Scor / rezultat | Eroare de compilare |
ssplit.cpp:2:7: error: 'nmax' was not declared in this scope int a[nmax], n; ^ ssplit.cpp: In function 'int Min(int, int, int)': ssplit.cpp:5:24: error: 'min' was not declared in this scope return min(min(x, y), z); ^ ssplit.cpp:5:28: error: 'min' was not declared in this scope return min(min(x, y), z); ^ ssplit.cpp:5:28: error: redeclaration of '<typeprefixerror>min' ssplit.cpp:5:24: note: previous declaration '<typeprefixerror>min' return min(min(x, y), z); ^ ssplit.cpp: In function 'int Max(int, int, int)': ssplit.cpp:9:24: error: 'max' was not declared in this scope return max(max(x, y), z); ^ ssplit.cpp:9:28: error: 'max' was not declared in this scope return max(max(x, y), z); ^ ssplit.cpp:9:28: error: redeclaration of '<typeprefixerror>max' ssplit.cpp:9:24: note: previous declaration '<typeprefixerror>max' return max(max(x, y), z); ^ ssplit.cpp: In function 'int main()': ssplit.cpp:15:5: error: 'cin' was not declared in this scope cin >> n; ^ ssplit.cpp:17:16: error: 'a' was not declared in this scope cin >> a[i]; ^ ssplit.cpp:20:9: error: 'a' was not declared in this scope a[i] += a[i - 1]; ^ ssplit.cpp:23:9: error: 'a' was not declared in this scope X = a[1]; Y = a[2] - a[1]; Z = a[n] - a[2]; ^ ssplit.cpp:39:5: error: 'cout' was not declared in this scope cout << P << " " << Q << "\n"; ^ ssplit.cpp: In function 'int Max(int, int, int)': ssplit.cpp:10:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ ssplit.cpp: In function 'int Min(int, int, int)': ssplit.cpp:6:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema ssplit 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ă.