結果

問題 No.2449 square_permutation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-09-01 10:07:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 213,480 KB
実行使用メモリ 20,796 KB
最終ジャッジ日時 2024-06-11 02:26:30
合計ジャッジ時間 6,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 51 ms
9,088 KB
testcase_07 AC 56 ms
9,728 KB
testcase_08 AC 61 ms
10,112 KB
testcase_09 AC 70 ms
11,924 KB
testcase_10 AC 105 ms
14,660 KB
testcase_11 AC 128 ms
15,476 KB
testcase_12 AC 122 ms
16,220 KB
testcase_13 AC 167 ms
20,704 KB
testcase_14 AC 167 ms
20,700 KB
testcase_15 AC 164 ms
20,764 KB
testcase_16 AC 171 ms
20,760 KB
testcase_17 AC 159 ms
20,760 KB
testcase_18 AC 150 ms
19,284 KB
testcase_19 AC 156 ms
20,672 KB
testcase_20 AC 182 ms
20,796 KB
testcase_21 AC 173 ms
20,796 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 164 ms
20,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

vector<ll> spf;
map<ll, ll> prime;

void osa_k(ll n){
    spf.resize(n+1);
    for (ll i=0; i<=n; i++) spf[i] = i;
    for (ll i=2; i*i<=n; i++){
        if (spf[i] == i){
            for (ll j=2; i*j <= n; j++){
                spf[i*j] = min(spf[i*j], i);
            }
        }
    }
}

void prime_factor(ll n){
    prime.clear();
    while(n != 1){
        prime[spf[n]]++;
        n /= spf[n];
    }
}

int main(){

    int N, x, y;
    cin >> N;
    osa_k(N+1);
    vector<vector<int>> v(N+1);
    for (int i=1; i<=N; i++){
        prime_factor(i);
        x = 1;
        for (auto [p, e] : prime){
            if (e % 2 == 1) x *= p;
        }
        v[x].push_back(i);
    }

    vector<int> ans;

    for (int i=1; i<=N; i++){
        prime_factor(i);
        x = 1;
        for (auto [p, e] : prime){
            if (e % 2 == 1) x *= p;
        }
        y = v[x].back();
        v[x].pop_back();
        ans.push_back(y);
    }

    for (auto x : ans) cout << x << " ";
    cout << endl;

    return 0;
}
0