当前位置:   article > 正文

CCF-CSP真题题解:201403-2 窗口

CCF-CSP真题题解:201403-2 窗口

201403-2 窗口

在这里插入图片描述

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 15;

int n, m;
struct Window {
	int x1, y1, x2, y2;
	int id;
} w[N];

int get(int x, int y) {
	for (int i = n; i; i--)
		if (x >= w[i].x1 && x <= w[i].x2 && y >= w[i].y1 && y <= w[i].y2)
			return i;
	return 0;
}

int main() {
	cin >> n >> m;
	for (int i = 1; i <= n; i++) {
		int x1, y1, x2, y2;
		cin >> x1 >> y1 >> x2 >> y2;
		w[i] = {x1, y1, x2, y2, i};
	}

	while (m -- ) {
		int x, y;
		cin >> x >> y;
		int t = get(x, y);
		if (!t) puts("IGNORED");
		else {
			cout << w[t].id << endl;
			auto r = w[t];
			for (int i = t; i < n; i++) w[i] = w[i + 1];
			w[n] = r;
		}
	}

	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/509337
推荐阅读
相关标签
  

闽ICP备14008679号