답안 #125857

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
125857 2019-07-06T13:10:47 Z eriksuenderhauf Nuclearia (CEOI15_nuclearia) C++11
92 / 100
1000 ms 897636 KB
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<vector<ll>> sm, d1, d2;
vector<vector<ll>> offC, slC, offSlC, slSlC;
 
int main() {
	int w, h, n;
	scanf("%d %d %d", &w, &h, &n);
	sm.resize(h+1);
	d1.resize(h+3), d2.resize(h+3), offC.resize(h+3), slC.resize(h+3);
	offSlC.resize(h+3), slSlC.resize(h+3);
	for (int i = 0; i <= h; i++)
		sm[i].resize(w+1);
	for (int i = 0; i <= h+2; i++) {
		d1[i].resize(w+3), d2[i].resize(w+3);
		offC[i].resize(w+3), slC[i].resize(w+3);
		offSlC[i].resize(w+3), slSlC[i].resize(w+3);
	}
	for (int i = 0; i < n; i++) {
		ll x, y, a, b;
		scanf("%lld %lld %lld %lld", &x, &y, &a, &b);
		ll l = max(1ll, x - a / b), r = min((ll)w, x + a / b);
		ll c = max(1ll, y - a / b), d = min((ll)h, y + a / b);
		ll loc = x - abs(y-c), hic = x + abs(y-c);
		ll lod = x - abs(y-d), hid = x + abs(y-d);
		if (loc < 1ll) {
			d1[y-x+1][2] -= b;
			offSlC[c][2] -= b;
			offSlC[y-x+1][2] += b;
			offSlC[c][l] -= b;
			offSlC[y-x+1][l] += b;
			offSlC[c][l+1] += b;
			offSlC[y-x+1][l+1] -= b;
			slSlC[y-x+1][l] -= b;
			slSlC[y-x+1][l+1] += b;
		} else {
			d1[c][loc+1] -= b;
			slSlC[c][l] -= loc * b;
			slSlC[c+1][l] += loc * b - b;
			slSlC[c][l+1] += loc * b;
			slSlC[c+1][l+1] -= loc * b - b;
		}
		slSlC[y+1][l] += 2 * b;
		slSlC[y+1][l+1] -= 2 * b;
		if (lod < 1ll) {
			d2[x+y-1][2] -= b;
			offSlC[x+y][2] -= b;
			offSlC[d+1][2] += b;
			offSlC[x+y][l] -= b;
			offSlC[d+1][l] += b;
			offSlC[x+y][l+1] += b;
			offSlC[d+1][l+1] -= b;
			slSlC[x+y+1][l] -= b;
			slSlC[x+y+1][l+1] += b;
		} else {
			d2[d][lod+1] -= b;
			slSlC[d+1][l] += lod * b - b;
			slSlC[d+2][l] -= lod * b;
			slSlC[d+1][l+1] -= lod * b - b;
			slSlC[d+2][l+1] += lod * b;
		}
		if (hid > (ll)w) {
			offSlC[w+y-x+1][r+1] -= b * w;
			offSlC[d+1][r+1] += b * w;
			offSlC[w+y-x+1][r+2] += b * w;
			offSlC[d+1][r+2] -= b * w;
			slSlC[w+y-x+1][r+1] += (ll)w * b + b;
			slSlC[w+y-x+2][r+1] -= (ll)w * b;
			slSlC[w+y-x+1][r+2] -= (ll)w * b + b;
			slSlC[w+y-x+2][r+2] += (ll)w * b;
		} else {
			d1[d+1][hid+2] += b;
			slSlC[d+1][r+1] += hid * b + b;
			slSlC[d+2][r+1] -= hid * b;
			slSlC[d+1][r+2] -= hid * b + b;
			slSlC[d+2][r+2] += hid * b;
		}
		slSlC[y+1][r+1] -= 2 * b;
		slSlC[y+1][r+2] += 2 * b;
		if (hic > (ll)w) {
			offSlC[c][r+1] -= b * w;
			offSlC[x+y-w][r+1] += b * w;
			offSlC[c][r+2] += b * w;
			offSlC[x+y-w][r+2] -= b * w;
			slSlC[x+y-w][r+1] -= (ll)w * b;
			slSlC[x+y-w+1][r+1] += (ll)w*b + b;
			slSlC[x+y-w][r+2] += (ll)w * b;
			slSlC[x+y-w+1][r+2] -= (ll)w*b + b;
		} else {
			d2[c-1][hic+2] += b;
			slSlC[c][r+1] -= hic * b;
			slSlC[c+1][r+1] += hic * b + b;
			slSlC[c][r+2] += hic * b;
			slSlC[c+1][r+2] -= hic * b + b;
		}
		offC[c][l] += a;
		offC[d+1][l] -= a;
		offC[c][r+1] -= a;
		offC[d+1][r+1] += a;
		slC[c][l] -= (hic - x) * b;
		slC[c+1][l] += (hic - x) * b + b;
		slC[y+1][l] -= 2 * b;
		slC[d+1][l] += (hid - x) * b + b;
		slC[d+2][l] -= (hid - x) * b;
		slC[c][r+1] += (hic - x) * b;
		slC[c+1][r+1] -= (hic - x) * b + b;
		slC[y+1][r+1] += 2 * b;
		slC[d+1][r+1] -= (hid - x) * b + b;
		slC[d+2][r+1] += (hid - x) * b;
		offSlC[c][l] += b * l;
		offSlC[d+1][l] -= b * l;
		offSlC[c][l+1] -= b * (l-1);
		offSlC[d+1][l+1] += b * (l-1);
		offSlC[c][r+1] += b * (r+1);
		offSlC[d+1][r+1] -= b * (r+1);
		offSlC[c][r+2] -= b * r;
		offSlC[d+1][r+2] += b * r;
	}
	for (int i = 1; i <= h; i++) {
		for (int j = 1; j <= w; j++) {
			slC[i][j] += slC[i-1][j];
			slSlC[i][j] += slSlC[i-1][j];
			d1[i][j] += d1[i-1][j-1];
			offC[i][j] += offC[i-1][j];
			offSlC[i][j] += offSlC[i-1][j];
		}
	}
	for (int i = h-1; i > 0; i--)
		for (int j = 1; j <= w; j++)
			d2[i][j] += d2[i+1][j-1];
	vector<ll> sl, off;
	sl.resize(w+1), off.resize(w+1);
	for (int i = 1; i <= h; i++) {
		for (int j = 1; j <= w; j++) {
			slC[i][j] += slC[i-1][j];
			slSlC[i][j] += slSlC[i-1][j];
		}
		for (int j = 1; j <= w; j++) {
			sl[j] = d1[i][j] + d2[i][j] + offSlC[i][j] + slSlC[i][j];
			sl[j] += sl[j-1];
			off[j] = offC[i][j] + slC[i][j];
			off[j] += off[j-1];
		}
		for (int j = 1; j <= w; j++) {
			sl[j] += sl[j-1];
			sm[i][j] = sm[i-1][j] + sm[i][j-1] - sm[i-1][j-1] + sl[j] + off[j];
		}
		for (int j = 1; j <= w; j++)
			sl[j] = off[j] = 0;
	}
	int q; scanf("%d", &q);
	while (q--) {
		ll x1, y1, x2, y2;
		scanf("%lld %lld %lld %lld", &x1, &y1, &x2, &y2);
		ll ans = sm[y2][x2] - sm[y1-1][x2] - sm[y2][x1-1] + sm[y1-1][x1-1];
		x1 = (x2-x1+1) * (y2-y1+1);
		if ((ans % x1) * 2 >= x1)
			printf("%lld\n", ans / x1 + 1);
		else
			printf("%lld\n", ans / x1);
	}
    return 0;
}

Compilation message

nuclearia.cpp: In function 'int main()':
nuclearia.cpp:10:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d %d", &w, &h, &n);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
nuclearia.cpp:23:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld %lld %lld %lld", &x, &y, &a, &b);
   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
nuclearia.cpp:153:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  int q; scanf("%d", &q);
         ~~~~~^~~~~~~~~~
nuclearia.cpp:156:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld %lld %lld %lld", &x1, &y1, &x2, &y2);
   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 531 ms 548344 KB Output is correct
2 Correct 100 ms 2680 KB Output is correct
3 Correct 91 ms 2308 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 530 ms 548216 KB Output is correct
2 Correct 101 ms 2832 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 176 ms 138232 KB Output is correct
2 Correct 96 ms 2772 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 356 ms 183396 KB Output is correct
2 Correct 99 ms 2808 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 691 ms 550740 KB Output is correct
2 Correct 106 ms 3304 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 363 ms 222064 KB Output is correct
2 Correct 100 ms 2752 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 322 ms 141788 KB Output is correct
2 Correct 103 ms 2992 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 290 ms 139768 KB Output is correct
2 Correct 96 ms 2780 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 902 ms 550876 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 902 ms 550884 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 576 ms 141328 KB Output is correct
2 Correct 591 ms 141452 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 584 ms 141436 KB Output is correct
2 Correct 592 ms 142320 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 659 ms 149200 KB Output is correct
2 Correct 470 ms 142496 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 471 ms 141860 KB Output is correct
2 Execution timed out 1119 ms 897636 KB Time limit exceeded