結果

問題 No.6 使いものにならないハッシュ
ユーザー ちんあなごちんあなご
提出日時 2021-08-23 18:09:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 1,478 bytes
コンパイル時間 2,652 ms
コンパイル使用メモリ 176,252 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 10:10:53
合計ジャッジ時間 3,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"bits/stdc++.h"
using namespace std;
typedef long long ll;

vector<ll> primeEnumeration(ll n,ll k){
    vector<ll>res;
    vector<bool>isprime(n+1,true);

    for(ll i=2;i<=n;i++){
        if(isprime[i]){
            for(ll j=i*2;j<=n;j+=i){
                isprime[j]=false;
            }
            if(i>=k)res.push_back(i);
        }
    }
    return res;
}

template <class T> void chmax(T &a,T b){
    if(a<b)a=b;
}

ll hAsh(string x){
    ll res=0;
    for(ll i=0;i<x.size();i++){
        res+=x[i]-'0';
    }

    if(res<10)return res;

    return hAsh(to_string(res));
}

int main(){
    ll n,k;
    cin>>k>>n;

    vector<ll>prime;
    map<ll,ll>map;

    prime=primeEnumeration(n,k);

    ll ans=0;
    ll ans2=0;
    ll max=-1;

    for(ll i=0;i<prime.size();i++){
        ll hash=hAsh(to_string(prime[i]));
        if(map.count(hash)){
            if(max>map[hash]){
                if(ans<=i-max){
                    chmax(ans,i-max);
                    chmax(ans2,prime[max+1]);
                }
                map[hash]=i;
                continue;
            }

            if(ans<=i-map[hash]){
                chmax(ans,i-map[hash]);
                chmax(ans2,prime[map[hash]+1]);
            }

            max=map[hash];
            map[hash]=i;
        }else{
            if(ans<=i-max){
                chmax(ans,i-max);
                chmax(ans2,prime[max+1]);
            }
            map[hash]=i;
        }
    }
    cout<<ans2<<endl;
}
0