結果

問題 No.12 限定された素数
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-19 13:05:39
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 1,633 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 149,348 KB
実行使用メモリ 6,064 KB
最終ジャッジ日時 2024-04-29 02:14:21
合計ジャッジ時間 9,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
6,060 KB
testcase_01 AC 268 ms
5,936 KB
testcase_02 AC 258 ms
6,064 KB
testcase_03 AC 201 ms
6,064 KB
testcase_04 AC 260 ms
5,936 KB
testcase_05 AC 270 ms
5,936 KB
testcase_06 AC 271 ms
6,064 KB
testcase_07 AC 274 ms
6,060 KB
testcase_08 AC 261 ms
5,932 KB
testcase_09 AC 268 ms
5,892 KB
testcase_10 AC 261 ms
6,060 KB
testcase_11 AC 280 ms
5,940 KB
testcase_12 AC 285 ms
5,936 KB
testcase_13 AC 276 ms
5,932 KB
testcase_14 AC 273 ms
6,064 KB
testcase_15 AC 276 ms
5,936 KB
testcase_16 AC 285 ms
5,936 KB
testcase_17 AC 259 ms
5,936 KB
testcase_18 AC 255 ms
5,936 KB
testcase_19 AC 255 ms
6,064 KB
testcase_20 AC 262 ms
5,932 KB
testcase_21 AC 266 ms
5,936 KB
testcase_22 AC 257 ms
5,840 KB
testcase_23 AC 254 ms
5,936 KB
testcase_24 AC 255 ms
5,936 KB
testcase_25 AC 262 ms
5,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>

using namespace std;

vector<bool> prime;
vector<int> p;

//O(NloglogN)
void erat(long long N){
    prime.resize(N+1, 1);
    prime[0] = 0;
    prime[1] = 0;
    for (long long i=2; i*i<=N; i++){
        if (prime[i]){
            for (long long j=i*2; j <= N; j+=i){
                prime[j] = 0;
            }
        }
    }
}

map<int, int> mp;
set<int> st;

void update(int X, int p){
    set<int> st2;
    while(X != 0){
        st2.insert(X%10);
        X /= 10;
    }
    for (auto x : st2){
        if (p == 1) mp[x]++;
        else mp[x]--;
    }
}

bool check1(){
    for (int i=0; i<=9; i++){
        if (!st.count(i) && mp[i] > 0) return 0;
    }
    return 1;
}

bool check2(){
    for (int i=0; i<=9; i++){
        if (!st.count(i) && mp[i] > 0 || (st.count(i) && mp[i] == 0)) return 0;
    }   
    return 1;
}

int main(){

    int N, M, A, l=0, a, b, ans=-1;
    cin >> N;
    erat(5000000);
    for (int i=1; i<=5000000; i++){
        if (prime[i]) p.push_back(i);

    }
    for (int i=0; i<N; i++){
        cin >> A;
        st.insert(A);
    }
    M = p.size();

    for (int r=0; r<M; r++){
        update(p[r], 1);
        while(l<r && !check1()){
            update(p[l], 0);
            l++;
        }
        if (check2()){
            if (l==0) a = 1;
            else a = p[l-1]+1;
            if (r==M-1) b = 5000000;
            else b = p[r+1]-1;
            ans = max(ans, b-a);
        }
    }

    cout << ans << endl;

    return 0;
}
0