結果

問題 No.14 最小公倍数ソート
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-04 16:48:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 1,143 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 217,236 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-08-04 16:48:54
合計ジャッジ時間 3,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 5 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 50 ms
9,088 KB
testcase_05 AC 27 ms
7,168 KB
testcase_06 AC 30 ms
7,424 KB
testcase_07 AC 35 ms
7,808 KB
testcase_08 AC 39 ms
8,320 KB
testcase_09 AC 46 ms
8,832 KB
testcase_10 AC 45 ms
8,832 KB
testcase_11 AC 46 ms
8,960 KB
testcase_12 AC 47 ms
8,832 KB
testcase_13 AC 47 ms
9,088 KB
testcase_14 AC 46 ms
8,960 KB
testcase_15 AC 48 ms
8,960 KB
testcase_16 AC 28 ms
7,296 KB
testcase_17 AC 25 ms
6,944 KB
testcase_18 AC 16 ms
6,940 KB
testcase_19 AC 37 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    vector<int> A(N);
    for(auto &a : A) cin >> a;

    vector<vector<int>> Ds(10001);
    for(int i=1; i<=10000; i++) for(int k=i; k<=10000; k+=i) Ds.at(k).push_back(i);

    vector<set<pair<int,int>>> S(10001);
    for(int i=1; i<N; i++) for(auto &d : Ds.at(A.at(i))) S.at(d).insert({A.at(i),i}); 
    
    vector<int> rev(N),P(N);
    iota(rev.begin(),rev.end(),0);
    for(int i=1; i<N; i++){
        int a = A.at(P.at(i-1));
        int lcm = 1001001001,B = 1001001001,pos = -1;
        for(auto &d : Ds.at(a)){
            if(S.at(d).size() == 0) continue;
            auto &[b,p] = (*S.at(d).begin());
            int now = a*b/d;
            if(now < lcm) lcm = now,B = b,pos = p;
            else if(now == lcm && b < B) lcm = now,B = b,pos = p;
        }
        for(auto &d : Ds.at(A.at(pos))) S.at(d).erase({A.at(pos),pos});
        int p1 = P.at(i);
        P.at(i) = pos;
        rev.at(p1) = rev.at(pos);
    }

    for(int i=0; i<N; i++) cout << A.at(P.at(i)) << (i==N-1?"\n":" ");
}
0