/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 925ms 229.781 MiB
#2 Accepted 907ms 229.824 MiB
#3 Accepted 910ms 229.848 MiB
#4 Accepted 997ms 229.637 MiB
#5 Accepted 953ms 229.98 MiB
#6 Accepted 958ms 229.727 MiB
#7 Wrong Answer 945ms 229.984 MiB
#8 Accepted 932ms 229.664 MiB
#9 Accepted 938ms 229.867 MiB
#10 Accepted 937ms 229.754 MiB
#11 Accepted 952ms 229.652 MiB
#12 Wrong Answer 964ms 229.883 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 + 5, 1), spf(sz + 5, 0), minpr(sz+1,1e10);

void prec(){
    spf[0] = -1, spf[1] = -1;
    prm[1] = 0;
    int lastorime = 0;
    for(int i = 2; i <= sz; i++){
        spf[i] = i;
        minpr[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 = val + 1; i <= val + m; i++){
            if(prm[i])jabo = i;
        }
        return jabo;
    };

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

    while(k){
        int jabo = updPos(n);
        if(jabo == -1){
            jabo = updNeg(n);
            int tmpPos = 2;
            for(int i = n + 1LL; i <= n + m; i++){  
                tmpPos = max(minpr[i],tmpPos);
                // cout<<i<<" "<<tmpPos<<nl;
            }
            if(jabo == -1 || tmpPos >= jabo){
                int tem = 2;
                for(int i = n + 1LL; i <= n + m; i++){  
                    tem = max(minpr[i],tem);
                }
                for(int i = n - 1LL; i >= max(n - m, 2LL); i--){
                   tem = max(minpr[i],tem);
                }
                if(n == tem){cout<<n<<nl;return;}
                n = tem;
            }
            else{
                if(k % 2LL){
                    if(k != 1LL) {
                        int tem = 2;
                        for(int i = n - 1LL; i >= max(n - m, 2LL); i--){
                            tem = max(minpr[i],tem);
                        }
                        if(tem + m >= jabo)jabo = n;
                    }
                    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 09:38:10
Judged At
2024-12-09 09:38:10
Judged By
Score
30
Total Time
997ms
Peak Memory
229.984 MiB