結果

問題 No.14 最小公倍数ソート
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-04 15:45:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,225 ms / 5,000 ms
コード長 836 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 207,012 KB
実行使用メモリ 394,368 KB
最終ジャッジ日時 2024-08-04 15:45:57
合計ジャッジ時間 20,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 382 ms
394,368 KB
testcase_01 AC 387 ms
394,240 KB
testcase_02 AC 381 ms
394,368 KB
testcase_03 AC 373 ms
394,368 KB
testcase_04 AC 1,225 ms
394,368 KB
testcase_05 AC 627 ms
394,368 KB
testcase_06 AC 660 ms
394,368 KB
testcase_07 AC 796 ms
394,368 KB
testcase_08 AC 974 ms
394,368 KB
testcase_09 AC 1,151 ms
394,240 KB
testcase_10 AC 1,176 ms
394,368 KB
testcase_11 AC 1,136 ms
394,368 KB
testcase_12 AC 1,181 ms
394,368 KB
testcase_13 AC 1,171 ms
394,368 KB
testcase_14 AC 1,171 ms
394,368 KB
testcase_15 AC 1,196 ms
394,368 KB
testcase_16 AC 719 ms
394,368 KB
testcase_17 AC 595 ms
394,368 KB
testcase_18 AC 499 ms
394,368 KB
testcase_19 AC 917 ms
394,368 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>> G(10001,vector<int>(10001,1));
    for(int i=2; i<=10000; i++){
        for(int k=i; k<=10000; k+=i) for(int l=k; l<=10000; l+=i) G.at(k).at(l) = i;
    }
    
    for(int i=1; i<N; i++){
        int a = A.at(i-1);
        int lcm = 1001001001,B = 1001001001,pos = -1;
        for(int k=i; k<N; k++){
            int b = A.at(k);
            int now = a*b/G.at(min(a,b)).at(max(a,b));
            if(now < lcm) lcm = now,B = b,pos = k;
            else if(now == lcm && b < B) lcm = now,B = b,pos = k;
        }
        swap(A.at(i),A.at(pos));
    }
    for(int i=0; i<N; i++) cout << A.at(i) << (i==N-1?"\n":" ");
}
0