fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. const int N = 1000000 + 10;
  6. const long long inf = 1e9 * 1e9;
  7.  
  8. int a[N], sum[N];
  9. long long f[N];
  10. deque<int> Q;
  11. int n, m;
  12.  
  13. int x(int i) {
  14. return sum[i];
  15. }
  16.  
  17. long long y(int i) {
  18. return f[i] + 1LL * sum[i] * sum[i];
  19. }
  20.  
  21. int main() {
  22. cin >> n >> m;
  23. for (int i=1; i<=n; i++) {
  24. cin >> a[i];
  25. sum[i] = sum[i-1] + a[i];
  26. }
  27. Q.push_back(0);
  28. for (int i=1; i<=n; i++) {
  29. while (Q.size() >= 2 && y(Q[1]) - y(Q[0]) <= 2LL * sum[i] * (x(Q[1]) - x(Q[0]))) Q.pop_front();
  30. int j = Q.front(), tail;
  31. f[i] = f[j] + 1LL * (sum[i] - sum[j]) * (sum[i] - sum[j]) + m;
  32. while ((tail = Q.size()) >= 2 &&
  33. (y(i) - y(Q[tail-1])) * (x(Q[tail-1]) - x(Q[tail-2])) <= (y(Q[tail-1]) - y(Q[tail-2])) * (x(i) - x(Q[tail-1])))
  34. Q.pop_back();
  35. Q.push_back(i);
  36. }
  37. cout << f[n] << endl;
  38. return 0;
  39. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
0