結果

問題 No.12 限定された素数
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-19 12:59:26
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,479 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 148,068 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-29 02:14:11
合計ジャッジ時間 9,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
6,064 KB
testcase_01 AC 274 ms
5,936 KB
testcase_02 WA -
testcase_03 AC 168 ms
6,068 KB
testcase_04 AC 262 ms
6,060 KB
testcase_05 AC 262 ms
5,932 KB
testcase_06 AC 267 ms
5,940 KB
testcase_07 AC 281 ms
6,064 KB
testcase_08 WA -
testcase_09 AC 265 ms
6,064 KB
testcase_10 WA -
testcase_11 AC 277 ms
6,068 KB
testcase_12 AC 288 ms
6,068 KB
testcase_13 AC 276 ms
5,940 KB
testcase_14 WA -
testcase_15 AC 277 ms
5,940 KB
testcase_16 AC 278 ms
6,068 KB
testcase_17 AC 264 ms
5,936 KB
testcase_18 AC 254 ms
5,936 KB
testcase_19 AC 257 ms
6,024 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 254 ms
5,936 KB
testcase_23 AC 254 ms
5,936 KB
testcase_24 AC 253 ms
6,068 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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 check(){
    for (int i=0; i<=9; i++){
        if (!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 && !check()){
            update(p[l], 0);
            l++;
        }
        if (check()){
            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