当前位置: 首页 > article >正文

测试数据随机,给2n个点,求所有偏移量,使得每两个点成为一个匹配

题目

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int maxn = 2e5 + 5;
int n;
struct Poi{
	int x, y;
	// Poi() = default;
	// Poi(int x, int y): x(x), y(y) {}
	Poi operator-(Poi u){
		// Poi res = {abs(x - u.x), abs(y - u.y)};不能直接都取绝对值
		// return res;
		return Poi{(x - u.x), (y - u.y)};
	}
	Poi operator+(Poi u){
		return Poi{x + u.x, y + u.y};
	}
	bool operator<(const Poi &u)const{//整段不能去掉,不然报错
		if(x != u.x) return x < u.x;
		return y < u.y;
	}
}point[maxn];
bool mp[maxn];
map<Poi, int> cnt;
bool check(Poi d){
	// for(int i = 1; i <= 2 * n; i++){
	// 	mp[i] = 0;
	// }
	int match = 0;
	int dx = d.x, dy = d.y;
	// for(int i = 1; i <= 2 * n; i++){
	// 	if(mp[i]) continue;
	// 	for(int j = i + 1; j <= 2 * n; j++){
	// 		Poi dd = point[i] - point[j];
	// 		if((dd.x == d.x && dd.y == dd.y)){
	// 			mp[i] = 1;
	// 			mp[j] = 1;
	// 			break;
	// 		}
	// 	}
	// 	if(!mp[i]) return 0;
	// }
	// return 1;
	map<Poi, int> tmp = cnt;
	for(int i = 1; i <= 2 * n; i++){
		int x = point[i].x, y = point[i].y;
		Poi u = {x + dx, y + dy};
		if(tmp[u] && tmp[point[i]]){
			tmp[u]--;
			tmp[point[i]]--;
			match++;
		}
	}
	return match == n;
}
void solve(){
	map<Poi, bool> vis;
	cnt.clear();
	int i, j;
	cin >> n;
	for(i = 1; i <= 2 * n; i++){
		cin >> point[i].x >> point[i].y;
		cnt[point[i]]++;
	}
	Poi d;
	vector<Poi> ans;
	for(i = 2; i <= 2 * n; i++){
		d = point[1] - point[i];
		if(d.x < 0) d.x = -d.x, d.y = -d.y;
		if(vis[d]) continue;
		vis[d] = 1;
		bool flag = 1;
		for(int j = 2; j <= 2 * n; j++){
			Poi u = point[j] + d;
			Poi v = point[j] - d;
			if(!cnt[u] && !cnt[v]){
				flag = 0;
				break;
			}
		}
		if(!flag) continue;
		if(check(d)){
			ans.push_back(d);
			if(!(d.x == 0 && d.y == 0)) ans.push_back({-d.x, -d.y});
		}
	}
	cout << ans.size() << '\n';
	sort(ans.begin(), ans.end());
	for(auto p : ans){
		cout << p.x << ' ' << p.y << '\n';
	}
}
signed main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	int T;
	cin >> T;
	while(T--){
		solve();
	}
	return 0;
}


http://www.kler.cn/a/146987.html

相关文章:

  • RSA算法原理
  • 【MySQL】RedHat8安装mysql9.1
  • Macmini中普通鼠标与TrackPad联动问题解决
  • 《Spring 基础之 IoC 与 DI 入门指南》
  • 【AlphaFold3】开源本地的安装及使用
  • Nature Communications 基于触觉手套的深度学习驱动视触觉动态重建方案
  • Wireshark的捕获过滤器
  • Unity之NetCode多人网络游戏联机对战教程(10)--玩家动画同步
  • LabVIEW当鼠标悬停在图形曲线上时显示坐标
  • 蓝桥杯每日一题2023.11.26
  • 一个C++ string使用问题的分析及解决
  • Junos webauth_operation.php 文件上传漏洞复现(CVE-2023-36844)
  • yolov5检测(前向)输入视频输出(不在图上画标签形式的原)图片的方法,及设置每隔几帧保存的方式(不每帧保存减少重复)
  • HCIA-RS基础-RIP路由协议
  • 如何将mobi、awz3、epub格式转化为pdf
  • 一体化污水处理设备各种材质的优缺点
  • 排序篇(六)----排序小结(不用三连,混流量券)
  • 五、双向NAT
  • SAP创建ODATA服务-Structure
  • 什么是面向对象编程及面向过程编程,它们的异同和优缺点
  • 快速开发出一个公司网站
  • ES开启安全认证
  • 初识前后端数据交互(新手篇)
  • Nginx如何配置负载均衡
  • 《100 Java Mistakes and How to Avoid Them》笔记 2
  • 2023 极术通讯-Arm 发布合作产品Cortex-M52,专为AIoT应用设计