码迷,mamicode.com
首页 > 其他好文 > 详细

poj2769 暴力

时间:2014-08-30 20:22:39      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   for   art   

bubuko.com,布布扣
 1 //Accepted    208 KB    157 ms
 2 //纯暴力
 3 //vis数组初始化时要用多少设置多少,不然TLE
 4 #include <cstdio>
 5 #include <cstring>
 6 #include <iostream>
 7 using namespace std;
 8 const int imax_n = 1000005;
 9 int a[imax_n];
10 bool vis[imax_n];
11 int n;
12 bool slove(int k)
13 {
14     memset(vis,false,k*sizeof(vis[0]));
15     for (int i=1;i<=n;i++)
16     {
17         int t=a[i]%k;
18         if (vis[t]) return false;
19         vis[t]=true;
20     }
21     return true;
22 }
23 int main()
24 {
25     int T;
26     scanf("%d",&T);
27     for  (int t=1;t<=T;t++)
28     {
29         scanf("%d",&n);
30         for (int i=1;i<=n;i++)
31         scanf("%d",&a[i]);
32         int k=n;
33         while (slove(k)==false) k++;
34         printf("%d\n",k);
35     }
36     return 0;
37 }
View Code

 

poj2769 暴力

标签:style   blog   http   color   os   io   ar   for   art   

原文地址:http://www.cnblogs.com/djingjing/p/3946753.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!