Codeforces Round #239 (Div. 1) ATriangle

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #239 (Div. 1) ATriangle相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


最后的直角三角形可以通过平移,将直角顶点移动到坐标原点。
然后我们只要枚举另外两个点其中一个点的坐标就好了。
x坐标的范围是[1..a)
因为再长的话,这条边肯定就超过边长a了。
然后用一些相似三角形的规律就能知道另外一个点的坐标了。
看看这两个点的y坐标是不是一样就好。

【代码】

#include <bits/stdc++.h>
using namespace std;

int a,b;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> a >> b;
    for (int i = 1;i  < a;i++){
        int x = i;
        int y = sqrt(a*a-x*x);
        if (y*y+x*x==a*a && b*y%a==0 && b*x%a==0 && b*x/a!=y){
            cout<<"YES"<<endl;
            cout<<"0 0"<<endl;
            cout<<x<<' '<<y<<endl;
            cout<<-b*y/a<<' '<<b*x/a<<endl;
            return 0;
        }
    }
    cout<<"NO"<<endl;
    return 0;
}

以上是关于Codeforces Round #239 (Div. 1) ATriangle的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #436 E. Fire(背包dp+输出路径)

[ACM]Codeforces Round #534 (Div. 2)

Codeforces Round #726 (Div. 2) B. Bad Boy(贪心)

Codeforces Global Round 19

Codeforces Educational Codeforces Round 67

Codeforces Round 1132Educational Round 61