結果

問題 No.1917 LCMST
ユーザー Georgi PetkovGeorgi Petkov
提出日時 2023-02-11 02:36:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,063 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 177,404 KB
実行使用メモリ 137,972 KB
最終ジャッジ日時 2023-09-22 02:40:24
合計ジャッジ時間 39,166 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
137,800 KB
testcase_01 RE -
testcase_02 AC 126 ms
137,752 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define endl '\n'

using namespace std;

const int maxn = 1e5 + 3;
const long long inf = 1e18;
const int bucket = 300; 

int n;
bool is[maxn];
long long ans;
deque <int> taken[maxn], not_taken[maxn];

vector <int> get_divisors(int x) {
    vector <int> ans;
    for (int i = 1; i * i <= x; i++)
        if (x % i == 0) {
            ans.push_back(i);
            if (i * i != x)
                ans.push_back(x / i);
        }

    return ans;
}

void add_num(int x) {
    vector <int> d = get_divisors(x); 
    for (auto i: d)
        not_taken[i].push_back(x);
}

void read() {
    cin >> n;
    for (int i = 1; i <= n; i++) {
        int x;
        cin >> x;

        if (is[x]) {
            ans += x;
            continue;
        }  

        is[x] = true;
    } 
}

struct edge {
    int from, to;
    long long w;

    edge(int _from, int _to, long long _w) {from = _from, to = _to, w = _w;}
    bool operator < (const edge &other) const {
        return w > other.w;
    }
};

ostream &operator << (ostream &out, const edge &e) {
    out << "edge from " << e.from << " to " << e.to << " with weight " << e.w << endl;
    return out;
}

void add_edges(int x, priority_queue <edge> &pq) {
    auto d = get_divisors(x);
    for (auto i: d)
        if (i > bucket)
            for (auto j: not_taken[i])
                if (is[j])
                    pq.push(edge(x, j, (long long)x * j / i));
}

edge get_best_edge(priority_queue <edge> &pq) { 
    while (!pq.empty()) {
        auto e = pq.top();
        if (!is[e.from] && !is[e.to]) {
            pq.pop();
            continue;
        }

        return e;
    } 

    return edge(-1, -1, inf);
}

edge get_single(int idx) {
    while (!not_taken[idx].empty() && !is[not_taken[idx].front()]) {
        not_taken[idx].pop_front();
        taken[idx].push_back(idx);
    }

    if (not_taken[idx].empty() || taken[idx].empty())
        return edge(-1, -1, inf);

    return edge(not_taken[idx].front(), taken[idx].front(), (long long)not_taken[idx].front() * taken[idx].front() / idx);
}

edge get_multiple() {
    edge ans = {-1, -1, inf};
    for (int i = 1; i <= bucket; i++)
        ans = max(ans, get_single(i));

    return ans;
}

void solve() {

    assert(ans == 0);
    int left = 0;
    for (int i = 1; i< maxn; i++)
        if (is[i])
            add_num(i), left++;

    for (int i = 1; i < maxn; i++)
        if (is[i]) {
            is[i] = false;
            priority_queue <edge> pq;
            add_edges(i, pq);
            left--;

            for (auto j: get_divisors(i)) {
                taken[j].push_back(i);
                not_taken[j].pop_front();
            }

            while (left) {
                auto e = get_best_edge(pq);
                e = max(e, get_multiple());
                ans += e.w;
                is[e.to] = is[e.from] = false;
                left--;
            }

            break;
        }

    cout << ans << endl;
}

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

    read();
    solve();
}
0