AcWing 4510. 寻宝!大冒险!
原题链接
简单
作者:
獨.
,
2025-03-27 22:03:41
·湖北
,
所有人可见
,
阅读 1
#include<bits/stdc++.h>
using namespace std;
const int N = 1005, M = 55;
const int INF = 1e8;
#define x first;
#define y second;
int n, L, S;
pair<int, int> tree[N];
int B[M][M];
int main() {
cin >> n >> L >> S;
for (int i = 0; i < n; i++) {
int x1, y1;
cin >> x1 >> y1;
tree[i] = {x1, y1};
}
int Bsize = 0;
for (int i = S; i >= 0; i--) {
for (int j = 0; j <= S; j++) {
cin >> B[i][j];
Bsize += B[i][j];
}
}
int ans = 0;
for (int i = 0; i < n; i++) {
int curX = tree[i].x;
int curY = tree[i].y;
if (curX + S > L || curY + S > L)continue;
int cnt = 0;
for (int j = 0; j < n; j++) {
int curX1 = tree[j].x;
int curY1 = tree[j].y;
if (curX1 >= curX && curX + S >= curX1 && curY1 >= curY && curY + S >= curY1) {
if (!B[curX1 - curX][curY1 - curY]) cnt = -INF;
else cnt++;
}
}
if (cnt == Bsize) ans++;
}
cout << ans << endl;
}