/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 950ms 229.77 MiB
#2 Accepted 936ms 229.656 MiB
#3 Accepted 924ms 229.645 MiB
#4 Accepted 935ms 229.98 MiB
#5 Accepted 956ms 229.816 MiB
#6 Accepted 942ms 229.648 MiB
#7 Wrong Answer 941ms 229.664 MiB
#8 Accepted 934ms 229.77 MiB
#9 Accepted 919ms 229.641 MiB
#10 Accepted 930ms 229.887 MiB
#11 Accepted 924ms 229.656 MiB
#12 Wrong Answer 933ms 229.859 MiB

Code


//SUST_life_nai
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define int long long
#define f(i,s,n) for(int i = s; i < n; i++)
int sz = 1e7;
vector<int> prm(sz + 1, 1), spf(sz + 1, 0), minpr(sz+1,1e10);

void prec(){
    spf[0] = -1, spf[1] = -1;
    int lastorime = 0;
    for(int i = 2; i <= sz; i++)spf[i] = i;
    for(int i = 2; i <= sz; i++){
        if(spf[i] != i)continue;
        // if(i - lastorime > 100) cout << i << " " << lastorime << nl;
        for(int j = i * i; j <= sz; j += i){
            if(spf[j] == j) minpr[j] = i; 
            spf[j] = i;
            prm[j] = 0;

        }
        lastorime = i;
    }
}

void solve(){
    int n,m,k;cin>>n>>m>>k;

    auto updPos = [&](int val){
        int jabo = -1;
        for(int i = n + 1; i <= n + m; i++){
            if(prm[i])jabo = i;
        }
        return jabo;
    };

    auto updNeg = [&](int val){
        int jabo = -1;
        for(int i = n - 1; i >= max(n - m, 2LL); i--){
            if(prm[i]){jabo = i;break;}
        }
        return jabo;
    };

    while(k){
        int jabo = updPos(n);
        if(jabo == -1){
            jabo = updNeg(n);
            if(jabo == -1){
                 int tem = 2;
                for(int i = n + 1; i <= n + m; i++){
                    tem = max(minpr[i],tem);
                }
                for(int i = n - 1; i >= max(n - m, 2LL); i--){
                    tem = max(minpr[i],tem);
                }
                n = tem;
            }
            else{
                if(k % 2){
                    if(k != 1) {
                         for(int i = jabo - 1; i >= max(n - m, 2LL); i--){
                            if(prm[i]){jabo = n;break;}
                        }
                    }
                    cout<<jabo<<nl;
                }
                else cout<<n<<nl;
                return;
            }
        }
        else n = jabo;
        k--;
    }
    cout<<n<<nl;
}

signed main() {
   ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
   int T = 1;
   cin>>T;
    prec();
    // for(int i = 1; i <= 100; i++) cout << minpr[i] << nl;
    // for(int i = 1300; i <= 1600; i++)if(prm[i])cout<<i<<nl;
   for(int tc = 1; tc <= T; tc++){
        solve();
        // cout<<"a"<<nl;
   }
}

Information

Submit By
Type
Submission
Problem
P1146 Yet Another Battle Between Roy and Hridoy!
Contest
LU IUJPC : Sylhet Division 2024
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-09 07:22:54
Judged At
2024-12-09 07:22:54
Judged By
Score
30
Total Time
956ms
Peak Memory
229.98 MiB