結果

問題 No.14 最小公倍数ソート
ユーザー kimiyukikimiyuki
提出日時 2017-01-04 18:19:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,695 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 73,088 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 00:40:48
合計ジャッジ時間 53,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 57 ms
5,376 KB
testcase_04 AC 4,695 ms
5,376 KB
testcase_05 AC 1,610 ms
5,376 KB
testcase_06 AC 1,893 ms
5,376 KB
testcase_07 AC 2,445 ms
5,376 KB
testcase_08 AC 3,235 ms
5,376 KB
testcase_09 AC 4,328 ms
5,376 KB
testcase_10 AC 4,288 ms
5,376 KB
testcase_11 AC 4,410 ms
5,376 KB
testcase_12 AC 4,546 ms
5,376 KB
testcase_13 AC 4,560 ms
5,376 KB
testcase_14 AC 4,385 ms
5,376 KB
testcase_15 AC 4,635 ms
5,376 KB
testcase_16 AC 1,712 ms
5,376 KB
testcase_17 AC 1,241 ms
5,376 KB
testcase_18 AC 561 ms
5,376 KB
testcase_19 AC 2,877 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
using namespace std;
template <typename T> T gcd(T a, T b) { while (a) { b %= a; swap(a, b); } return b; }
template <typename T> T lcm(T a, T b) { return (a * b) / gcd(a,b); }
int main() {
    int n; cin >> n;
    vector<int> a(n); repeat (i,n) cin >> a[i];
    repeat (i,n-1) {
        auto it = min_element(a.begin() + i+1, a.end(), [&](int b, int c) {
            return make_pair(lcm(a[i], b), b) < make_pair(lcm(a[i], c), c);
        });
        swap(a[i+1], *it);
    }
    repeat (i,n) cout << (i ? " " : "") << a[i]; cout << endl;
    return 0;
}
0