zoukankan      html  css  js  c++  java
  • C

    T. Chur teaches various groups of students at university U. Every U-student has a unique Student Identification Number (SIN). A SIN s is an integer in the range 0 ≤ s ≤ MaxSIN with MaxSIN = 10 6-1. T. Chur finds this range of SINs too large for identification within her groups. For each group, she wants to find the smallest positive integer m, such that within the group all SINs reduced modulo m are unique.

    Input

    On the first line of the input is a single positive integer N, telling the number of test cases (groups) to follow. Each case starts with one line containing the integer G (1 ≤ G ≤ 300): the number of students in the group. The following G lines each contain one SIN. The SINs within a group are distinct, though not necessarily sorted.

    Output

    For each test case, output one line containing the smallest modulus m, such that all SINs reduced modulo m are distinct.

    Sample Input

    2
    1
    124866
    3
    124866
    111111
    987651
    

    Sample Output

    1
    8
    

    该题,整体思路有,不过会觉得肯定会超时,结果也超时了,后来搜了题解,有一个小小的技巧
    就是memset的时候,不整体memset,而是从0到i+1,因为下一层循环对i取得膜,所以vis里面改变的下标都<=i!!!!!十分重要,不这样就会超时!!!
    #include <iostream>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    using namespace std;
    const int maxn=1e6+10;
    bool vis[maxn];
    int a[500];
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int g;
            scanf("%d",&g);
            for(int i=0;i<g;i++) scanf("%d",&a[i]);
    
            if(g==1) printf("1
    ");
            else
            {
                int i;
                for(i=2;;i++)
                {
                    memset(vis,0,sizeof(bool)*(i+1));//!!!!
                    bool flag=0;
                    for(int j=0;j<g;j++)
                    {
                        if(vis[a[j]%i]){flag=1;break;}
                        else vis[a[j]%i]=1;
                    }
                    if(flag==0) break;
                }
                printf("%d
    ",i);
            }
        }
    }
    

      



  • 相关阅读:
    学习dubbo
    【Spring】SpringMVC配置文件
    Mac下git配置
    【Spring】入门HelloWorld
    【MySql】启动/停止
    Javaweb 编解码流程
    TensorFlow学习笔记1
    Nginx 代理配置
    【转】RPC介绍
    【dubbo】dubbo控制台搭建
  • 原文地址:https://www.cnblogs.com/EchoZQN/p/10290653.html
Copyright © 2011-2022 走看看