結果

問題 No.1666 累乗数
ユーザー milanis48663220milanis48663220
提出日時 2021-09-03 22:16:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,640 bytes
コンパイル時間 1,648 ms
コンパイル使用メモリ 134,644 KB
実行使用メモリ 61,504 KB
最終ジャッジ日時 2024-05-09 04:35:25
合計ジャッジ時間 10,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
59,492 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

class Eratosthenes{
    public:
    int m;
    vector<bool> is_prime;
    vector<int> primes;
    Eratosthenes(int m_){
        m = m_;
        init();
    }
    private:
    void init(){
        is_prime.assign(m+1, true);
        is_prime[0] = false, is_prime[1] = false;
        for(int i = 2; i <= m; i++){
            if(is_prime[i]){
                primes.push_back(i);
                for(int j = 2; i*j <= m; j++) is_prime[i*j] = false;
            }
        }
    }
};

const ll INF = 1e18;

ll pow(ll x, int n){
    ll ans = 1;
    for(int i = 0; i < n; i++){
        if(INF/x < ans) return INF;
        ans *= x;
    }
    return ans;
}

ll root_floor(ll n, ll k){
    if(n == 1) return 1;
    if(k == 1) return n;
    ll l = 1, r = n;
    while(r-l > 1){
        ll x = (l+r)/2;
        if(pow(x, k) > n) r = x;
        else l = x;
    }
    return l;
}

auto et = Eratosthenes(1000);
const int N_MAX = 1000000;

bool used[N_MAX+1];

set<ll> st;
vector<ll> v;

void init(){
    for(int i = 1; i*i <= N_MAX; i++) used[i*i] = true;
    for(int i = 1; i <= N_MAX; i++){
        if(used[i]) continue;
        ll cur = (ll)i*i*i;
        for(int j = 3; j <= 60; j++){
            if(et.is_prime[j]){
                assert(st.count(cur) == 0);
                st.insert(cur);
            }
            if(cur > INF/i) break;
            if(cur <= N_MAX) used[cur] = true;
            cur *= i;
        }
    }
    for(ll x: st) v.push_back(x);
}

ll count(ll k){
    ll sq = root_floor(k, 2);
    auto p = upper_bound(v.begin(), v.end(), k);
    ll ans = sq+(p-v.begin());
    return ans;
}

ll solve(ll k){
    if(k == 1) return 1;
    ll l = 1, r = 1e18;
    while(r-l > 1){
        ll x = (l+r)/2;
        if(count(x) >= k) r = x;
        else l = x;
    }
    return r;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    init();
    
    int t; cin >> t;
    while(t--) {
        ll k; cin >> k; cout << solve(k) << endl;
    }
}
0