Pashmak has fallen in love with an attractive girl called Parmida since one year ago...
Today, Pashmak set up a meeting with his partner in a romantic garden. Unfortunately, Pashmak has forgotten where the garden is. But he remembers that the garden looks like a square with sides parallel to the coordinate axes. He also remembers that there is exactly one tree on each vertex of the square. Now, Pashmak knows the position of only two of the trees. Help him to find the position of two remaining ones.
The first line contains four space-separated x1, y1, x2, y2 ( - 100 ≤ x1, y1, x2, y2 ≤ 100) integers, where x1 and y1 are coordinates of the first tree and x2 and y2 are coordinates of the second tree. It's guaranteed that the given points are distinct.
If there is no solution to the problem, print -1. Otherwise print four space-separated integers x3, y3, x4, y4 that correspond to the coordinates of the two other trees. If there are several solutions you can output any of them.
Note that x3, y3, x4, y4 must be in the range ( - 1000 ≤ x3, y3, x4, y4 ≤ 1000).
0 0 0 1
1 0 1 1
0 0 1 1
0 1 1 0
0 0 1 2
-1
题意:
给出 x1,x2,y1,y2,问能不能构成正方形,能则输出另外两点。不能则输出 -1。
思路:
模拟。分情况讨论清楚就行。
AC:
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; int main() { int x1, y1, x2, y2; scanf("%d%d%d%d", &x1, &y1, &x2, &y2); int lenx = abs(x1 - x2); int leny = abs(y1 - y2); if (lenx && leny && lenx != leny) printf("-1\n"); else if (!lenx) printf("%d %d %d %d\n", (x1 + leny), y1, (x1 + leny), y2); else if (!leny) printf("%d %d %d %d\n", x1, y1 + lenx, x2, y1 + lenx); else printf("%d %d %d %d\n", x2, y1, x1, y2); return 0; }
相关推荐
《Garden方法提取位同步程序》 位同步是通信领域中的一个重要概念,它是指在数字通信系统中,接收端能够准确地识别出发送端数据的起始位置,从而正确解码的过程。Garden方法,也被称为Gardner算法,是一种经典的位...
《UL 62841-3-7:2021 Electric Motor-Operated Hand-Held Tools, Transportable Tools and Lawn and Garden Machinery - Safety - Part 3-7:Particular Requirements for Transportable Wall Saws》是美国保险商...
使用 PX4 SITL 和 Gazebo Garden 进行模拟。使用 YOLOv8 进行物体检测。演示 px4-ros2-gazebo-yolov8-demo.mp4 Docker我提供了一个 Dockerfile,已经使用最新版本的 PX4-Autopilot(v1.15.0)进行了测试。# Buildgit...
在Kubernetes应用的开发阶段,Linux Garden提供了强大的本地开发环境模拟功能。开发者可以在自己的机器上运行与集群相似的环境,进行单元测试和集成测试,减少了对真实集群的依赖,降低了资源消耗。这有助于在早期...
**Rosegarden:一款强大的音乐创作与编辑软件** Rosegarden是一款开源的音乐制作软件,专为Linux操作系统设计。它提供了全面的音乐创作环境,让用户能够进行作曲、编曲、录音以及MIDI编辑。这款软件深受音乐爱好者...
Jelly Garden Match 3
《PyPI官网下载:kivy_garden.mapview-1.0.5.tar.gz》 PyPI(Python Package Index)是Python社区广泛使用的软件包仓库,它提供了大量的Python库供开发者下载和使用。在这个案例中,我们关注的是一个名为`kivy_...
正是在这样的背景下,kivy_garden库应运而生,为matplotlib提供了新的生命,使其能够与Kivy框架兼容,进而开发出跨平台的交互式应用。 首先,kivy_garden是一个用于Kivy应用的扩展模块,它允许开发者利用Kivy强大的...
### VOA农业报告:米歇尔·奥巴马与学童共同为白宫南草坪有机菜园奠基 #### 背景概述 本月早些时候,美国前第一夫人米歇尔·奥巴马与23名学童共同在白宫南草坪为一个有机蔬菜园进行土地准备工作。...
JavaScript Garden,通常被称为JS Garden,是一个在线资源,旨在帮助开发者理解和规避JavaScript中的常见陷阱和微妙之处。这个项目是由Bodo Tasche创建的,它详细解释了JavaScript语言的一些复杂性和不直观的行为,...
《Python库Kivy Garden中的ZBarCam模块详解》 在Python的世界里,库是开发者的重要工具,它们提供了丰富的功能,让编程变得更加高效。今天我们要深入探讨的是Kivy Garden中的一个特殊模块——ZBarCam,它封装了...
BS EN ISO 5395-1-2013.Garden equipment — Safetyrequirements for combustionengine-powered lawnmowers ...Committee AGE/20, Powered lawn and garden equipment. A list of organizations represented
《Rosegarden 1.6.0:Linux平台上的专业音乐混音软件》 在开源的世界里,Linux操作系统以其灵活性和强大的定制性吸引了无数开发者和用户。而在音乐创作领域,Linux同样有着丰富的软件资源,其中Rosegarden便是一款...
本压缩包"obsidian-garden-main.zip"包含了Obsidian数字花园的参照模板以及使用说明书,旨在帮助用户更好地理解和利用这款工具。 首先,让我们了解一下什么是"数字花园"。数字花园是一种网络上的知识组织方式,它...
by the loading and balancing system of Huajun software garden,only for the stat. of servers, meaningless to the customers. ================================================================ QA2IjrnHt...
**CSS Zen Garden** 是一个非常著名的在线项目,它展示了CSS(Cascading Style Sheets)在网页设计中的巨大潜力。这个项目由Dave Shea于2003年创建,旨在教育和启发设计师如何通过纯CSS来改变网页的外观和布局,而...
### JavaScript Garden:深入探讨JavaScript中的陷阱与注意事项 #### 引言 《JavaScript Garden》是一份不断更新、详尽记录了JavaScript编程语言中最易犯错误、陷阱及细微问题的指南。该文档不仅帮助开发者规避常见...
默认积分是1,不能为0,所以在这里说下地址:下载的文件地址在这里:https://github.com/billfienberg/grid-garden
在网页设计的世界中,"禅意花园"(Zen Garden)是一个极具影响力的学习平台,它专注于展示CSS(层叠样式表)的魔力,如何通过HTML(超文本标记语言)的结构基础,创造出丰富多样的视觉效果。这个项目的核心理念是,...