Advertisement
erfanul007

UVa 897

Jan 2nd, 2020
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.76 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. // #pragma GCC optimize("Ofast,no-stack-protector")
  5. // #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
  6. // #pragma GCC optimize("unroll-loops")
  7.  
  8. typedef unsigned long long ull;
  9. typedef long long          ll;
  10. typedef long double        lld;
  11. typedef vector<int>        vi;
  12. typedef vector<ll>         vll;
  13. typedef vector<vi>         vvi;
  14. typedef pair<int,int >     pii;
  15. typedef pair<ll,ll >       pll;
  16. typedef vector< pii >      vpii;
  17. typedef vector< pll >      vpll;
  18. typedef set<int>           sti;
  19.  
  20. #define sc                 scanf
  21. #define pf                 printf
  22. #define sci(n)             scanf("%d",&n)
  23. #define scii(n,m)          scanf("%d %d",&n,&m)
  24. #define scl(n)             scanf("%lld",&n)
  25. #define scd(n)             scanf("%lf",&n)
  26. #define scs(s)             scanf("%s",s)
  27. #define pfi(n)             printf("%d",n)
  28. #define pfl(n)             printf("%lld",n)
  29. #define pff(n)             cout<<n
  30. #define spc                printf(" ")
  31. #define line               printf("\n")
  32. #define loop(i,x,y)        for(int i=int(x); i<=int(y); i++)
  33. #define rloop(i,y,x)       for(int i=int(y); i>=int(x); i--)
  34. #define cspf(i)            printf("Case %d: ", i)
  35. #define vout(v)            for(int w=0;w<v.size();w++){if(w) cout<<' '; cout<<v[w];}
  36. #define clr(a,x)           memset(a,x,sizeof(a))
  37. #define tp(v,j)            get<j>(v)
  38. #define pb                 push_back
  39. #define mp                 make_pair
  40. #define mt                 make_tuple
  41. #define ff                 first
  42. #define ss                 second
  43. #define all(v)             v.begin(),v.end()
  44. #define rall(v)            v.rbegin(),v.rend()
  45. #define read()             freopen("input.txt", "r", stdin)
  46. #define write()            freopen("output.txt", "w", stdout)
  47. #define fastIO()           ios_base::sync_with_stdio(false); cin.tie(NULL);
  48. /// Constants
  49. #define eps                1e-6
  50. #define PI                 acos(-1.0)  // 3.1415926535897932
  51. #define MAX                1e9
  52. #define MAXn               10000009
  53.  
  54. int GCD(int a, int b) { return b == 0 ? a : GCD(b , a % b); }
  55. ll LCM(ll a, ll b) { return a * (b/GCD(a, b)); }
  56.  
  57. vi prime;
  58. bitset<MAXn>chk;
  59.  
  60.  
  61. void seive()
  62. {
  63.     chk[0]=chk[1]=1;
  64.     for(int i=4;i<MAXn;i+=2) chk[i]=1;
  65.     for(int i=3;i<=MAXn/i;i+=2){
  66.         if(chk[i]) continue;
  67.         for(int j=i*i;j<MAXn;j+=(2*i)) chk[j]=1;
  68.     }
  69.     prime.pb(2);
  70.     for(int i=3;i<MAXn;i+=2){
  71.         if(!chk[i]) prime.pb(i);
  72.     }
  73. }
  74.  
  75. int BSup(int lo,int hi,int n)
  76. {
  77.     if(lo>hi) return MAX;
  78.     int mid = (lo+hi)/2;
  79.     if(prime[mid]>n) return min(mid, BSup(lo,mid-1,n));
  80.     return BSup(mid+1,hi,n);
  81. }
  82.  
  83. int BSlo(int lo,int hi,int c)
  84. {
  85.     if(lo>hi) return -1;
  86.     int mid = (lo+hi)/2;
  87.     if(prime[mid]<c) return max(mid, BSlo(mid+1,hi,c));
  88.     return BSlo(lo,mid-1,c);
  89. }
  90.  
  91. bool angprime(int x)
  92. {
  93.     vi v;
  94.     while(x){
  95.         v.pb(x%10);
  96.         x/=10;
  97.     }
  98.     sort(all(v));
  99.     do{
  100.         x=0;
  101.         for(int i=0;i<v.size();i++){
  102.             x=x*10+v[i];
  103.         }
  104.         if(chk[x]) return false;
  105.     }while(next_permutation(all(v)));
  106.     return true;
  107. }
  108.  
  109. int main()
  110. {
  111.     #ifdef VAMP
  112.         clock_t tStart = clock();
  113.         freopen("input.txt", "r", stdin);
  114.         freopen("output.txt", "w", stdout);
  115.     #endif
  116.  
  117.     seive();
  118.  
  119.     while(1){
  120.         int n;
  121.         sci(n);
  122.         if(!n) break;
  123.         int c=1;
  124.         while(c<=n) c*=10;
  125.         int st = BSup(0,prime.size()-1,n);
  126.         int en = BSlo(0,prime.size()-1,c);
  127.         bool f=true;
  128.         for(int i=st;i<=en;i++){
  129.             if(angprime(prime[i])){
  130.                 pfi(prime[i]);line;
  131.                 f=false;
  132.                 break;
  133.             }
  134.         }
  135.         if(f) pf("0\n");
  136.     }
  137.    
  138.  
  139.     #ifdef VAMP
  140.         fprintf(stderr, "\n>> Runtime: %.10fs\n", (double) (clock() - tStart) / CLOCKS_PER_SEC);
  141.     #endif
  142.  
  143.     return 0;
  144. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement