Submission #859100

# Submission time Handle Problem Language Result Execution time Memory
859100 2023-10-09T17:15:30 Z serifefedartar NLO (COCI18_nlo) C++17
0 / 110
21 ms 5008 KB
#include <bits/stdc++.h>
using namespace std;
 
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 1e9 + 7;
const ll LOGN = 22; 
const ll MAXN = 1e5 + 5;

int x[105], y[105], r[105];
int sg[4*MAXN], lazy[4*MAXN];
int sq[MAXN]; 
void push(int k, int a, int b) {
	if (lazy[k] != -1) {
		sg[k] = (b - a + 1) * lazy[k];
		if (a != b) {
			lazy[2*k] = lazy[k];
			lazy[2*k+1] = lazy[k];
		}
		lazy[k] = -1;
	}
}	

void update(int k, int a, int b, int q_l, int q_r, int v) {
	push(k, a, b);
	if (q_r < a || q_l > b)
		return ;
	if (q_l <= a && b <= q_r) {
		lazy[k] = v;
		push(k, a, b);
		return ;
	}
	update(2*k, a, (a+b)/2, q_l, q_r, v);
	update(2*k+1, (a+b)/2+1, b, q_l, q_r, v);
	sg[k] = sg[2*k] + sg[2*k+1];
}

int query(int k, int a, int b, int q_l, int q_r) {
	if (b < q_l || a > q_r)
		return 0;
	push(k, a, b);
	if (q_l <= a && b <= q_r)
		return sg[k];
	return query(2*k, a, (a+b)/2, q_l, q_r) + query(2*k+1, (a+b)/2 + 1, b, q_l, q_r);
}

int main() {
	fast
	for (int i = 0; i < MAXN; i++)
		sq[i] = sqrt(i);
	memset(lazy, -1, sizeof(lazy));
	int N, M, K;
	cin >> N >> M >> K;

	for (int i = 0; i < K; i++)
		cin >> y[i] >> x[i] >> r[i];

	ll ans = 0;
	for (int i = 1; i <= N; i++) {
		update(1, 1, M, 1, M, 1);
		for (int circ = K-1; circ >= 0; circ--) {
			int hei = abs(y[circ] - i);
			if (hei > r[circ])
				continue;
			hei *= hei;

			int sqr = sq[r[circ] * r[circ] - hei];

			ans += (K-1-circ) * query(1, 1, M, x[circ] - sqr, x[circ] + sqr);
			update(1, 1, M, x[circ] - sqr, x[circ] + sqr, 0);
		}
		ans += K * query(1, 1, M, 1, M);
	}
	cout << ans << "\n";
}
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 2652 KB Output isn't correct
2 Incorrect 21 ms 2684 KB Output isn't correct
3 Incorrect 15 ms 2688 KB Output isn't correct
4 Runtime error 3 ms 4956 KB Execution killed with signal 11
5 Runtime error 3 ms 4956 KB Execution killed with signal 11
6 Runtime error 3 ms 4956 KB Execution killed with signal 11
7 Runtime error 3 ms 4956 KB Execution killed with signal 11
8 Runtime error 4 ms 4956 KB Execution killed with signal 11
9 Runtime error 4 ms 5008 KB Execution killed with signal 11
10 Runtime error 3 ms 4956 KB Execution killed with signal 11