結果

問題 No.14 最小公倍数ソート
ユーザー legosukelegosuke
提出日時 2021-08-08 05:18:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 1,109 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 211,804 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-09-19 01:12:15
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 65 ms
9,216 KB
testcase_05 AC 33 ms
7,040 KB
testcase_06 AC 37 ms
7,296 KB
testcase_07 AC 42 ms
7,680 KB
testcase_08 AC 51 ms
8,320 KB
testcase_09 AC 60 ms
8,832 KB
testcase_10 AC 59 ms
8,960 KB
testcase_11 AC 62 ms
8,960 KB
testcase_12 AC 63 ms
8,960 KB
testcase_13 AC 66 ms
9,088 KB
testcase_14 AC 62 ms
8,960 KB
testcase_15 AC 67 ms
9,088 KB
testcase_16 AC 36 ms
7,168 KB
testcase_17 AC 28 ms
6,912 KB
testcase_18 AC 20 ms
6,144 KB
testcase_19 AC 49 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MAX_N = 10000;
const int MAX_A = 10000;
int N;
vector<int> divs[MAX_N];
set<pair<int, int>> S[MAX_A + 1];

int main() {
    int N;
    cin >> N;
    vector<int> a(N);
    for (int i = 0; i < N; ++i) {
        cin >> a[i];
        for (int j = 1; j * j <= a[i]; ++j) {
            if (a[i] % j != 0) continue;
            divs[a[i]].push_back(j);
            S[j].emplace(a[i], i);
            if (j * j != a[i]) {
                divs[a[i]].push_back(a[i] / j);
                S[a[i] / j].emplace(a[i], i);
            }
        }
    }
    int id = 0;
    for (int i = 0; i < N; ++i) {
        cout << a[id] << " \n"[i + 1 == N];
        int minL = 1 << 30, nid = -1;
        for (int div : divs[a[id]]) {
            S[div].erase({a[id], id});
            if (S[div].empty()) continue;
            auto v = *begin(S[div]);
            int L = lcm(a[id], v.first);
            if (L < minL || (L == minL && v.first < a[nid])) {
                minL = L;
                nid = v.second;
            }
        }
        id = nid;
    }

    return 0;
}
0