답안 #582925

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
582925 2022-06-24T15:16:04 Z 600Mihnea Building Bridges (CEOI17_building) C++17
100 / 100
124 ms 103264 KB
#include <bits/stdc++.h>

using namespace std;

typedef long double ld;
typedef long long ll;

const ll INF = (ll) 1e18 + 7;

struct T {
  ll a;
  ll b;
  bool mt = 1;

  T() {

  }

  T(ll a, ll b) : a(a), b(b) {
  }

  ll evaluate(ll x) {
    if (mt) {
      return INF;
    }
    return a * x + b;
  }
};

const int N = (int) 1e5 + 7;
const int DIM = (int) 1e6 + 7;
int n;
ll h[N];
ll sum[N];
ll dp[N];
T coef[N];
T tree[4 * DIM];

void addLine(int v, int tl, int tr, T line) {
  if (line.evaluate(tl) <= tree[v].evaluate(tl) && line.evaluate(tr) <= tree[v].evaluate(tr)) {
    tree[v] = line;
    return;
  }
  if (tree[v].evaluate(tl) <= line.evaluate(tl) && tree[v].evaluate(tr) <= line.evaluate(tr)) {
    return;
  }
  assert(tl < tr);
  int tm = (tl + tr) / 2;
  if (line.evaluate(tl) < tree[v].evaluate(tl)) {
    swap(line, tree[v]);
  }
  assert(tree[v].evaluate(tl) <= line.evaluate(tl));
  if (tree[v].evaluate(tm) <= line.evaluate(tm)) {
    addLine(2 * v + 1, tm + 1, tr, line);
  } else {
    swap(line, tree[v]);
    addLine(2 * v, tl, tm, line);
  }
}

ll get(int v, int tl, int tr, int x) {
  if (x < tl || tr < x) {
    return INF;
  }
  ll sol = tree[v].evaluate(x);
  if (tl < tr) {
    int tm = (tl + tr) / 2;
    sol = min(sol, get(2 * v, tl, tm, x));
    sol = min(sol, get(2 * v + 1, tm + 1, tr, x));
  }
  return sol;
}

void addLine(T line) {
  addLine(1, 0, (int) 1e6, line);
}

ll get(int x) {
  return get(1, 0, (int) 1e6, x);
}

signed main() {
  ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

 /// freopen ("input.txt", "r", stdin);

  cin >> n;
  for (int i = 1; i <= n; i++) {
    int x;
    cin >> x;
    h[i] = x;
  }
  for (int i = 1; i <= n; i++) {
    int x;
    cin >> x;
    sum[i] = sum[i - 1] + x;
  }

  dp[1] = 0;
  for (int i = 2; i <= n; i++) {
    dp[i] = INF;
  }

  vector<T> all;

  for (int r = 2; r <= n; r++) {
    T line = {- 2 * h[r - 1], dp[r - 1] + h[r - 1] * h[r - 1] - sum[r - 1]};
    line.mt = 0;

    all.push_back(line);
    addLine(line);

    dp[r] = get(h[r]);

    dp[r] += h[r] * h[r] + sum[r - 1];
  }

  cout << dp[n] << "\n";

}
# 결과 실행 시간 메모리 Grader output
1 Correct 35 ms 96600 KB Output is correct
2 Correct 36 ms 96564 KB Output is correct
3 Correct 36 ms 96576 KB Output is correct
4 Correct 37 ms 96596 KB Output is correct
5 Correct 39 ms 96588 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 108 ms 102044 KB Output is correct
2 Correct 93 ms 102104 KB Output is correct
3 Correct 92 ms 103120 KB Output is correct
4 Correct 90 ms 102980 KB Output is correct
5 Correct 94 ms 103040 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 35 ms 96600 KB Output is correct
2 Correct 36 ms 96564 KB Output is correct
3 Correct 36 ms 96576 KB Output is correct
4 Correct 37 ms 96596 KB Output is correct
5 Correct 39 ms 96588 KB Output is correct
6 Correct 108 ms 102044 KB Output is correct
7 Correct 93 ms 102104 KB Output is correct
8 Correct 92 ms 103120 KB Output is correct
9 Correct 90 ms 102980 KB Output is correct
10 Correct 94 ms 103040 KB Output is correct
11 Correct 106 ms 103264 KB Output is correct
12 Correct 98 ms 103128 KB Output is correct
13 Correct 84 ms 103260 KB Output is correct
14 Correct 124 ms 103232 KB Output is correct
15 Correct 82 ms 102976 KB Output is correct
16 Correct 83 ms 103012 KB Output is correct
17 Correct 72 ms 103188 KB Output is correct
18 Correct 94 ms 103220 KB Output is correct