B. Phoenix and Puzzle

Posted 幽殇默

tags:

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


https://codeforces.com/problemset/problem/1515/B
首先我们要知道,给定个面积如何判断是不是正方形的面积。
只要判断是不是平方数即可。
这里的话有两种情况:

  • 1.把每两个三角形看成一个基本方块点,然后看是不是平方数即可。
  • 2.把每四个三角形看成一个基本方块点,然后看是不是平方数即可。
#include<bits/stdc++.h>
using namespace std;
int lowbit(int x)
{
	return x&(-x);
}
int main(void)
{
	int t; cin>>t;
	while(t--)
	{
		int n; cin>>n;
		bool flag=0;
	    if(n%2==0)
	    {
	        int temp=n/2;
	        int a=sqrt(temp);
	        if(a*a==temp) flag=1;
	    }
	    if(n%4==0)
	    {
	        int temp=n/4;
	        int a=sqrt(temp);
	        if(a*a==temp) flag=1;
	    }
	    if(flag) puts("YES");
	    else puts("NO");
	}
	return 0;
}

以上是关于B. Phoenix and Puzzle的主要内容,如果未能解决你的问题,请参考以下文章

B. Phoenix and Puzzle

CodeForces - 1515B Phoenix and Puzzle

Codeforces Global Round 14-B. Phoenix and Puzzle-质因数拆解

B. Phoenix and Beauty1400 / 构造 构造循环结

914D Bash and a Tough Math Puzzle

CF 914 D. Bash and a Tough Math Puzzle