結果
問題 | No.12 限定された素数 |
ユーザー | kyuridenamida |
提出日時 | 2016-02-10 20:31:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 123 ms / 5,000 ms |
コード長 | 1,463 bytes |
コンパイル時間 | 1,642 ms |
コンパイル使用メモリ | 164,448 KB |
実行使用メモリ | 24,984 KB |
最終ジャッジ日時 | 2024-05-03 09:44:51 |
合計ジャッジ時間 | 4,471 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
24,864 KB |
testcase_01 | AC | 82 ms
24,976 KB |
testcase_02 | AC | 78 ms
24,856 KB |
testcase_03 | AC | 120 ms
24,980 KB |
testcase_04 | AC | 78 ms
24,980 KB |
testcase_05 | AC | 85 ms
24,852 KB |
testcase_06 | AC | 96 ms
24,984 KB |
testcase_07 | AC | 103 ms
24,980 KB |
testcase_08 | AC | 83 ms
24,856 KB |
testcase_09 | AC | 79 ms
24,980 KB |
testcase_10 | AC | 83 ms
24,980 KB |
testcase_11 | AC | 123 ms
24,852 KB |
testcase_12 | AC | 106 ms
24,852 KB |
testcase_13 | AC | 89 ms
24,852 KB |
testcase_14 | AC | 83 ms
24,980 KB |
testcase_15 | AC | 94 ms
24,832 KB |
testcase_16 | AC | 112 ms
24,852 KB |
testcase_17 | AC | 83 ms
24,936 KB |
testcase_18 | AC | 78 ms
24,912 KB |
testcase_19 | AC | 79 ms
24,856 KB |
testcase_20 | AC | 81 ms
24,848 KB |
testcase_21 | AC | 85 ms
24,980 KB |
testcase_22 | AC | 80 ms
24,852 KB |
testcase_23 | AC | 79 ms
24,852 KB |
testcase_24 | AC | 79 ms
24,984 KB |
testcase_25 | AC | 85 ms
24,848 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int p[5000010]; vector<int> t(10); void f(int n){ if( n == 0 ){ t = vector<int>(10); return; } f(n/10); t[n%10]++; return; } int bit = 0; bool noChance(vector<int> c){ for(int i = 0 ; i < 10 ; i++){ if( !(bit>>i&1) && c[i] ){ return true; } } return false; } bool ok(vector<int> c){ for(int i = 0 ; i < 10 ; i++){ if( (bit>>i&1) ^ (!!c[i]) ){ return false; } } return true; } int main(){ for(int i = 2 ; i <= 5000000 ; i++) p[i] = 1; int N; cin >> N; for(int i = 0 ; i < N ; i++) { int x; cin >> x; bit |= (1<<x); } vector<int> now(10); vector<int> P,Q; for(long long i = 2 ; i <= 5000000 ; i++){ if( p[i] ){ P.push_back(i); for(long long j = i*i ; j <= 5000000 ; j += i ) p[j] = 0; } } int j = 0; int ans = -1; for(int i = 0 ; i < P.size() ; i++){ while(j < P.size()){ f(P[j]); vector<int> tnow = now; for(int j = 0 ; j < 10 ; j++) tnow[j] += t[j]; if( noChance(tnow) ) break; now = tnow; j++; } if( i == j ){ j++; }else{ if(ok(now)){ int A = P[i]; int B = P[j-1]; while( B < 5000000 && !p[B+1] ) B++; while( A > 1 && !p[A-1] ) A--; // if( B - A == 158 || B - A == 166 ) // cout << "(" << B-A << ")" << A << " " << B << "|" << P[i] << " " << P[j] << endl; ans = max(ans,B-A); } f(P[i]); for(int j = 0 ; j < 10 ; j++) now[j] -= t[j]; } } cout << ans << endl; }