UVA1595 Symmetry(暴力模拟)

本文介绍了一种通过编程判断一组点是否能构成左右对称图形的方法。通过对点进行排序并比较对应点的位置来验证图形的对称性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题意:

The figure shown on the left is left-right symmetric as it is possible to fold the sheet of paper along a vertical line, drawn as a dashed line, and to cut the figure into two identical halves. The figure on the right is not left-right symmetric as it is impossible to find such a vertical line.

Write a program that determines whether a figure, drawn with dots, is left-right symmetric or not. The dots are all distinct.
 

Input:

The input consists of T test cases. The number of test cases T is given in the first line of the input file. The first line of each test case contains an integer N, where N (1 ≤ N ≤ 1,000) is the number of dots in a figure. Each of the following N lines contains the x-coordinate and y-coordinate of a dot. Both x-coordinates and y-coordinates are integers between −10,000 and 10,000, both inclusive.
 

Output:

Print exactly one line for each test case. The line should contain ‘YES’ if the figure is left-right symmetric, and ‘NO’, otherwise.
 

Sample Input:

3

5

-2 5

0 0

6 5

4 0

2 3

4

2 3

0 4

4 0

0 0

4

5 14

6 10

5 10

6 14

 

Sample Output:

YES

NO

YES
 

分析:
题意就是给你一些点,是否能组成一个左右对称的图形,所以读题一定要仔细啊,我最开始只看到对称图形,还迷茫了一下难道要判断左右对称、上下对称、斜对称,那不是要死人了,再仔细读了下题才确定是左右对称,弱读题的菜鸡真的伤不起。我最开始想的方法有点复杂,是找到最中间的轴,把点排序后分为两部分,然后左右散开扫一遍是不是对应的,但是这又得考虑到同一个x位置上可能有多个点,就涉及到y轴上的分布,成功把自己绕了进去,看了大佬的解题报告,真的妙啊,把点集升序和降序分别排一遍,顺序扫一遍看dot1[i].x+dot[2].x是否等于中轴的两倍,因为y轴是按照同一个顺序排列的,y轴只需要考察是否相等就可以了,秒啊。中轴的找法是最左边的点和最右边的点的横坐标相加除以二。

 

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 1010;
int t, n, l, r, temp;

struct node{
	int x,y;
};

node dot1[maxn], dot2[maxn];

bool cmp1(node a, node b){
	if(a.x == b.x)
		return a.y > b.y;
	return a.x < b.x;
}

bool cmp2(node a, node b){
	if(a.x == b.x)
		return a.y > b.y;
	return a.x > b.x;
}

bool ava(){
	for(int i = 0; i < n; i++){
		if(dot1[i].x + dot2[i].x != temp) return false;
		else if(dot1[i].y != dot2[i].y) return false;
	}
	return true;
}

int main(){
	cin>>t;
	while(t--){
		cin>>n;
		int a, b;
		l = 10010;
		r = -10010;
		for(int i = 0; i < n; i++){
			cin>>a>>b;
			dot1[i].x = dot2[i].x = a;
			dot1[i].y = dot2[i].y = b;
			if(a < l)  l = a;
			if(a > r)  r = a;
		}
		sort(dot1, dot1+n, cmp1);
		sort(dot2, dot2+n, cmp2);
		
		temp = l + r;
		
		if(ava()) cout<<"YES"<<endl;
		else cout<<"NO"<<endl;
	}
	return 0;
}

 

### 后端开发中Cell Symmetry的概念 在集成电路设计领域,特别是在标准单元库的设计过程中,`cell symmetry`是一个重要的属性。对于常见的标准单元(std-cell),通常支持水平和垂直方向上的翻转操作[^1]。 #### Cell Symmetry的定义方式 为了表达这种对称特性,在LEF文件中通过特定语法来声明: - `SYMMETRY X`: 表明该单元可以在X轴上镜像放置而不影响功能; - `SYMMETRY Y`: 表示允许沿Y轴进行反射变换; - `SYMMETRY XY`: 则意味着既能在X也能在Y方向执行上述两种转换; 当涉及到更复杂的宏模块时,除了基本的方向外还可以指定站点(`SITE`)信息,这对于具有固定排列模式的标准单元阵列特别有用。例如,在构建核心区域或I/O环结构期间,自动化布局布线工具可以根据这些预设好的位置参数完成元件间的最优分配。 ```verilog // LEF 文件片段展示如何定义一个具备XY对称性的标准单元 MACRO my_std_cell CLASS CORE ; FOREIGN my_std_cell 0.0 0.0 ; ORIGIN 0.0 0.0 ; SIZE 1.4 BY 2.8 ; SYMMETRY X Y SITE core_site ; END my_std_cell ``` #### 应用场景 随着制造技术的进步,特别是进入深亚微米时代之后,考虑到着色(coloring)/网格(grid)等因素的影响,某些特殊类型的存储器如静态随机存取存储器(SRAM),其内部结构往往呈现出高度有序的特点。因此在这种情况下利用好`SITE`字段能够帮助更好地满足不同工艺节点下的设计规则检查(DRC)。 此外,合理的设置`PIN`的位置同样至关重要。因为所有引脚坐标的设定均参照于当前IP对象左下角(N朝向)这一点来进行定位,这有助于确保在整个电路板级联过程中各个组件之间连接关系的一致性和准确性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值