Determine the Shape(暴力)

G

Determine the Shape

Input

Standard Input

Output

Standard Output


A toy company recently found that toys like revolver, machine guns, fighting planes are making children violent and destroying the peace of the world. The parents also began to avoid these toys and inclined to educational toys. So they decided to manufacture educational toys. One of these is a electric touch pad on which children can put four points and the program will automatically join the points to form a closed shape. Children will try to guess the shape and when they press a button then it will automatically announce the shape. But they are struggling to determine the shape and seek your help.

Your task is simple. You are given four points, no three of them are collinear, you have to output the simple polygonal shape formed by these points in the following order:

Square
Rectangle
Rhombus
 Parallelogram
Trapezium
Ordinary Quadrilateral

For example if it is possible to form a square with the four points you must output Square,  if it is not possible to form a square but possible to form a rectangle you must output Rectangle and so on.

Input

Input starts with an integer T, the number of test cases (T50000). Each test case contains 4 lines. Each of the lines contains two space separated integers xi yi (-10000xi, yi 10000) which are the coordinate values of a point.

 

Output

For each set of input output one line in the format Case ks. Here k is the case number starting from 1 and s is the shape as described above. See sample input output for more details.

Sample Input

Sample Output

6

0 0

2 0

2 2

0 2

0 0

3 0

3 2

0 2

0 0

8 4

5 0

3 4

0 0

2 0

3 2

1 2

0 0

5 0

4 3

1 3

0 0

5 0

4 3

1 4

 

Case 1: Square

Case 2: Rectangle

Case 3: Rhombus

Case 4: Parallelogram

Case 5: Trapezium

Case 6: Ordinary Quadrilateral

 

 

       题意:

       给出 4 个点的坐标,输出这是 正方形,长方形,平行四边形,梯形,普通三角形 还是 菱形。

 

       思路:

       暴力。输出的坐标可以先预处理一下,x 轴小到大排序,再 y 小到大排序。对于正方形,长方形,平行四边形,菱形都是可以直接判断的,但是梯形的话就要判断任意两条边平行,剩下两条边不平行来判断。如果全都不是,则说明是普通三角形。

 

       AC:

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

typedef long long ll;

typedef struct {
    ll x, y;
}node;

ll len(ll x1, ll y1, ll x2, ll y2) {
    ll x = (x2 - x1) * (x2 - x1);
    ll y = (y2 - y1) * (y2 - y1);
    return (x + y);
}

bool ang(node a, node b, node c, node d) {
    ll x1 = a.x - b.x, y1 = a.y - b.y;
    ll x2 = c.x - d.x, y2 = c.y - d.y;
    if (x1 * x2 + y1 * y2 == 0) return true;
    return false;
}

bool par(node a, node b, node c, node d) {
    ll x1 = a.x - b.x, y1 = a.y - b.y;
    ll x2 = c.x - d.x, y2 = c.y - d.y;
    if (x1 * y2 - x2 * y1 == 0) return true;
    return false;
}

bool Trapezium(node a, node b, node c, node d) {
    if (par(a, b, c, d) && !par(a, c, b, d)) return true;
    if (par(a, c, b, d) && !par(a, b, c, d)) return true;
    if (par(b, c, d, a) && !par(b, d, c, a)) return true;
    return false;
}

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

int main() {

    int t;
    scanf("%d", &t);

    for (int tt = 1; tt <= t; ++tt) {
        node no[5];
        for (int i = 1; i <= 4; ++i)
            scanf("%lld%lld", &no[i].x, &no[i].y);
        sort(no + 1, no + 5, cmp);

        ll len1 = len(no[1].x, no[1].y, no[2].x, no[2].y);
        ll len2 = len(no[1].x, no[1].y, no[3].x, no[3].y);
        ll len3 = len(no[2].x, no[2].y, no[4].x, no[4].y);
        ll len4 = len(no[3].x, no[3].y, no[4].x, no[4].y);

        printf("Case %d: ", tt);
        if (len1 == len2 && len3 == len4 && len1 == len4 &&
            ang(no[2], no[1], no[3], no[1]) &&
            ang(no[1], no[2], no[4], no[2]) &&
            ang(no[1], no[3], no[4], no[3]) &&
            ang(no[2], no[4], no[3], no[4]) ) printf("Square\n");
        else if (len1 == len4 && len2 == len3 && len1 != len2 &&
                 ang(no[2], no[1], no[3], no[1]) &&
                 ang(no[1], no[2], no[4], no[2]) &&
                 ang(no[1], no[3], no[4], no[3]) &&
                 ang(no[2], no[4], no[3], no[4]) ) printf("Rectangle\n");
        else if (len1 == len4 && len2 == len3 && len1 == len2 &&
                 ang(no[3], no[2], no[4], no[1])) printf("Rhombus\n");
        else if (par(no[4], no[2], no[3], no[1]) &&
                 par(no[2], no[1], no[4], no[3])) printf("Parallelogram\n");
        else if (Trapezium(no[1], no[2], no[3], no[4])) printf("Trapezium\n");
        else printf("Ordinary Quadrilateral\n");
    }

    return 0;
}

 

 

【事件触发一致性】研究多智能体网络如何通过分布式事件驱动控制实现有限时间内的共识(Matlab代码实现)内容概要:本文围绕多智能体网络中的事件触发一致性问题,研究如何通过分布式事件驱动控制实现有限时间内的共识,并提供了相应的Matlab代码实现方案。文中探讨了事件触发机制在降低通信负担、提升系统效率方面的优势,重点分析了多智能体系统在有限时间收敛的一致性控制策略,涉及系统模型构建、触发条件设计、稳定性与收敛性分析等核心技术环节。此外,文档还展示了该技术在航空航天、电力系统、机器人协同、无人机编队等多个前沿领域的潜在应用,体现了其跨学科的研究价值和工程实用性。; 适合人群:具备一定控制理论基础和Matlab编程能力的研究生、科研人员及从事自动化、智能系统、多智能体协同控制等相关领域的工程技术人员。; 使用场景及目标:①用于理解和实现多智能体系统在有限时间内达成一致的分布式控制方法;②为事件触发控制、分布式优化、协同控制等课题提供算法设计与仿真验证的技术参考;③支撑科研项目开发、学术论文复现及工程原型系统搭建; 阅读建议:建议结合文中提供的Matlab代码进行实践操作,重点关注事件触发条件的设计逻辑与系统收敛性证明之间的关系,同时可延伸至其他应用场景进行二次开发与性能优化。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值