首页 > 其他 > 详细

SCU4436—— map——Easy Math

时间:2015-07-15 01:15:04      阅读:160      评论:0      收藏:0      [点我收藏+]
/*
    map 向量可以存东西与数的大小无关,只与数的数目有关
 
*/
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<map>
using namespace std;
map<int, int >a;
int main()
{
    for(int i = 0; i <= 32000; i++){
        a[i*i]++;
    }
    int m, n;
    while(~scanf("%d",&n)){
        int flag = 0;
        for(int i = 1; i <= n ; i++){
            scanf("%d", &m);
            if(a[m] == 0)
                flag = 1;
        }
    if(flag == 0) printf("Yes\n");
    else printf("No\n");
    }
   return 0;
}

  

SCU4436—— map——Easy Math

原文:http://www.cnblogs.com/zero-begin/p/4647007.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!