結果

問題 No.1917 LCMST
ユーザー colognecologne
提出日時 2022-05-01 13:16:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,971 ms / 4,000 ms
コード長 1,027 bytes
コンパイル時間 3,953 ms
コンパイル使用メモリ 262,796 KB
実行使用メモリ 23,836 KB
最終ジャッジ日時 2024-06-30 15:35:25
合計ジャッジ時間 46,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 1,646 ms
15,652 KB
testcase_10 AC 1,858 ms
15,780 KB
testcase_11 AC 1,971 ms
15,780 KB
testcase_12 AC 1,695 ms
15,520 KB
testcase_13 AC 816 ms
11,548 KB
testcase_14 AC 1,827 ms
15,520 KB
testcase_15 AC 576 ms
9,376 KB
testcase_16 AC 901 ms
11,424 KB
testcase_17 AC 1,183 ms
15,464 KB
testcase_18 AC 1,438 ms
15,520 KB
testcase_19 AC 520 ms
9,380 KB
testcase_20 AC 424 ms
8,352 KB
testcase_21 AC 548 ms
9,376 KB
testcase_22 AC 412 ms
8,220 KB
testcase_23 AC 413 ms
8,352 KB
testcase_24 AC 552 ms
9,376 KB
testcase_25 AC 422 ms
8,352 KB
testcase_26 AC 471 ms
8,480 KB
testcase_27 AC 491 ms
9,376 KB
testcase_28 AC 499 ms
9,376 KB
testcase_29 AC 1,474 ms
23,712 KB
testcase_30 AC 1,522 ms
23,616 KB
testcase_31 AC 1,505 ms
23,716 KB
testcase_32 AC 1,480 ms
23,712 KB
testcase_33 AC 1,492 ms
23,712 KB
testcase_34 AC 280 ms
7,296 KB
testcase_35 AC 273 ms
7,296 KB
testcase_36 AC 271 ms
7,424 KB
testcase_37 AC 1,474 ms
23,712 KB
testcase_38 AC 1,519 ms
23,716 KB
testcase_39 AC 1,569 ms
23,716 KB
testcase_40 AC 1,668 ms
23,712 KB
testcase_41 AC 1,552 ms
23,712 KB
testcase_42 AC 1,483 ms
23,836 KB
testcase_43 AC 288 ms
7,680 KB
testcase_44 AC 284 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    long ans = 0;
    int M = *max_element(A.begin(), A.end());
    vector<bool> V(M + 1);
    for (int a : A)
    {
        if (V[a])
            ans += a;
        V[a] = 1;
    }

    vector<pair<int, int>> E;
    for (int i = 1; i <= M; i++)
    {
        for (int j = i; j <= M; j += i)
        {
            if (V[j])
            {
                for (int k = j + i; k <= M; k += i)
                    if (V[k])
                        E.emplace_back(j, k);
                break;
            }
        }
    }

    sort(E.begin(), E.end(), [&](auto a, auto b)
         { return lcm((long)a.first, a.second) < lcm((long)b.first, b.second); });

    atcoder::dsu D(M + 1);

    for (auto &[a, b] : E)
    {
        if (!D.same(a, b))
        {
            D.merge(a, b);
            ans += lcm((long)a, b);
        }
    }

    cout << ans << endl;
}
0