博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CCF认证真题-(201403-2)-窗口(模拟)
阅读量:5261 次
发布时间:2019-06-14

本文共 990 字,大约阅读时间需要 3 分钟。

#include 
#include
using namespace std;struct form { int x1, y1, x2, y2; int id; int pri;};form arr[15];bool cmp (form a, form b){ return a.pri > b.pri;}int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; for (int i = 1; i <= n; i++) { cin >> arr[i].x1 >> arr[i].y1 >> arr[i].x2 >> arr[i].y2; arr[i].id = i; arr[i].pri = i; } for (int i = 1; i <= m; i++) { int x, y; cin >> x >> y; sort(arr + 1, arr + n + 1, cmp); bool flag = false; for (int i = 1; i <= n; i++) { if (x >= arr[i].x1 && x <= arr[i].x2 && y >= arr[i].y1 && y <= arr[i].y2) { cout << arr[i].id << endl; arr[i].pri = arr[1].pri + 1; flag = true; break; } } if (!flag) cout << "IGNORED" << endl; } return 0;}

 

转载于:https://www.cnblogs.com/AntonLiu/p/11161422.html

你可能感兴趣的文章
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
使用&nbsp;SharedPreferences 分类: Andro...
查看>>
TLA+(待续...)
查看>>
题解: [GXOI/GZOI2019]与或和
查看>>
MacOS copy图标shell脚本
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>
android:scaleType属性
查看>>
SuperEPC
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>
Js时间处理
查看>>