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

Codeforces Round #276 div1 B. Maximum Value Hash 乱搞

时间:2014-11-25 15:48:16      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   for   on   div   

#include <cstdio>
#include <cmath>
#include <cstring>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
#include <sstream>
#include <queue>
#include <typeinfo>
#include <fstream>
typedef long long ll;
using namespace std;
//freopen("D.in","r",stdin);
//freopen("D.out","w",stdout);
#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)//输入输出挂
const int maxn=2000000+100;
int a[maxn];
int main()
{
    sspeed;
    int n;
    cin>>n;
    int x;
    for(int i=0;i<n;i++)
    {
        cin>>x;
        a[x]=x;
    }
    for(int i=0;i<maxn;i++)
    {
        if(a[i]!=i)
            a[i]=a[i-1];
    }//hash一下
    int ans=0;
    for(int i=2;i<maxn;i++)
    {
        if(a[i]==i)
        {
            for(int j=i+i-1;j<maxn;j+=i)
            {
                if(a[j]%i>ans&&a[j]>i)
                    ans=a[j]%i;
            }
        }
    }//每次从离Mod最大的地方开始寻找
    cout<<ans<<endl;
    return 0;
}

 

Codeforces Round #276 div1 B. Maximum Value Hash 乱搞

标签:style   blog   io   color   os   sp   for   on   div   

原文地址:http://www.cnblogs.com/qscqesze/p/4120917.html

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