답안 #570078

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
570078 2022-05-28T14:09:23 Z 600Mihnea Nuclearia (CEOI15_nuclearia) C++17
30 / 100
1000 ms 198188 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

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

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

  bool Inverse = 0;

  int n, m;
  cin >> n >> m;
  if (n > m) {
    Inverse = 1;
    swap(n, m);
  }
  assert(n <= m);
  vector<vector<ll>> radiation(n + 2, vector<ll> (m + 2, 0)), v(n + 2, vector<ll> (m + 2, 0)), jmen(n + 2, vector<ll> (m + 2, 0));

  function<void(int, int, int, int, int)> proc = [&] (int dist, int r, int c, int a, int b) {
    int stop = min(max(m - c, c - 1), a / b);
    assert(a - dist * b >= 1);
    int L = max(1, c - dist), R = min(m, c + dist);
    jmen[r][L] += (a - dist * b);
    jmen[r][R + 1] -= (a - dist * b);
    if (dist + 1 <= stop) {

      for (int dist2 = dist + 1; dist2 <= min(stop, m - c); dist2++) {
        int c2 = c + dist2;
        v[r][c2] += a - b * dist2;
      }
      for (int dist2 = dist + 1; dist2 <= stop && dist2 <= c - 1; dist2++) {
        assert(dist2 >= 1);
        int c2 = c - dist2;
        v[r][c2] += a - b * dist2;
      }
    }
  };

  int ops;
  cin >> ops;
  for (int i = 1; i <= ops; i++) {
    int r, c, a, b;
    cin >> r >> c >> a >> b;
    if (Inverse) {
      swap(r, c);
    }
    for (int r2 = 1; r2 <= n; r2++) {
      for (int c2 = 1; c2 <= m; c2++) {
        int dist = max(abs(r - r2), abs(c - c2));
        radiation[r2][c2] += max(0LL, a - 1LL * b * dist);
      }
    }

    for (int dist = 0; (r + dist <= n || r - dist >= 1) && a - dist * b >= 1; dist++) {
      if (r + dist <= n) {
        proc(dist, r + dist, c, a, b);
      }
      if (r - dist >= 1 && dist >= 1) {
        proc(dist, r - dist, c, a, b);
      }
    }
  }
  for (int r = 1; r <= n; r++) {
    for (int c = 1; c <= m; c++) {
      jmen[r][c] += jmen[r][c - 1];
      v[r][c] += jmen[r][c];
    }
  }
  assert(v == radiation);

  {
    /// transform the radiation in the form of prefix rectangle sum

    for (int i = 1; i <= n; i++) {
      ll cur = 0;
      for (int j = 1; j <= m; j++) {
        cur += radiation[i][j];
        radiation[i][j] = radiation[i - 1][j] + cur;
      }
    }
  }

  int q;
  cin >> q;
  while (q--) {
    int r1, c1, r2, c2;
    cin >> r1 >> c1 >> r2 >> c2;
    if (Inverse) {
      swap(r1, c1);
      swap(r2, c2);
    }
    ll total = radiation[r2][c2] - radiation[r1 - 1][c2] - radiation[r2][c1 - 1] + radiation[r1 - 1][c1 - 1];
    ll area = (r2 - r1 + 1) * (c2 - c1 + 1);

    cout << total / area + (total % area >= area - total % area) << "\n";
  }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 385 ms 196000 KB Output is correct
2 Correct 62 ms 2696 KB Output is correct
3 Correct 52 ms 2300 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 369 ms 196004 KB Output is correct
2 Correct 80 ms 2768 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 294 ms 59364 KB Output is correct
2 Correct 58 ms 2800 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 320 ms 65988 KB Output is correct
2 Correct 57 ms 2608 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 277 ms 198188 KB Output is correct
2 Correct 68 ms 2912 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 392 ms 80916 KB Output is correct
2 Correct 60 ms 2636 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 409 ms 61668 KB Output is correct
2 Correct 66 ms 2844 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 377 ms 53488 KB Output is correct
2 Correct 57 ms 2636 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1096 ms 195980 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1100 ms 195932 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1093 ms 59300 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1087 ms 59340 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1081 ms 60596 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1084 ms 59300 KB Time limit exceeded
2 Halted 0 ms 0 KB -