HDU 3903 Trigonometric Function
Posted Fighting Heart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 3903 Trigonometric Function相关的知识,希望对你有一定的参考价值。
这题真难,并不会推理。。。
#include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; long long a, b, c; int p; int main() { int T; scanf("%d", &T); while (T--) { scanf("%lld%lld%lld", &a, &b, &c); scanf("%d%d%d", &p, &p, &p); long long x = (a + b + c)*(b + c - a)*(a + c - b)*(a + b - c); long long z = (long long)sqrt(x); if (z*z == x) printf("YES\n"); else printf("NO\n"); } return 0; }
以上是关于HDU 3903 Trigonometric Function的主要内容,如果未能解决你的问题,请参考以下文章
POJ3903 Stock Exchange LIS最长上升子序列