結果

問題 No.1917 LCMST
ユーザー Georgi PetkovGeorgi Petkov
提出日時 2023-02-11 04:55:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,005 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 173,712 KB
実行使用メモリ 146,304 KB
最終ジャッジ日時 2023-09-22 04:20:30
合計ジャッジ時間 60,034 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,740 KB
testcase_01 AC 4 ms
5,712 KB
testcase_02 AC 4 ms
5,796 KB
testcase_03 AC 11 ms
5,980 KB
testcase_04 AC 11 ms
5,936 KB
testcase_05 AC 11 ms
5,956 KB
testcase_06 AC 12 ms
6,200 KB
testcase_07 AC 11 ms
6,020 KB
testcase_08 AC 3 ms
5,920 KB
testcase_09 AC 2,525 ms
81,020 KB
testcase_10 AC 2,567 ms
80,488 KB
testcase_11 AC 2,591 ms
79,700 KB
testcase_12 AC 1,851 ms
47,464 KB
testcase_13 AC 480 ms
14,016 KB
testcase_14 AC 2,160 ms
47,724 KB
testcase_15 AC 265 ms
9,084 KB
testcase_16 AC 497 ms
14,808 KB
testcase_17 AC 862 ms
20,804 KB
testcase_18 AC 1,131 ms
28,464 KB
testcase_19 AC 250 ms
8,456 KB
testcase_20 AC 175 ms
7,404 KB
testcase_21 AC 270 ms
9,704 KB
testcase_22 AC 181 ms
7,460 KB
testcase_23 AC 171 ms
7,368 KB
testcase_24 AC 258 ms
9,564 KB
testcase_25 AC 177 ms
7,548 KB
testcase_26 AC 208 ms
8,044 KB
testcase_27 AC 216 ms
8,216 KB
testcase_28 AC 231 ms
8,316 KB
testcase_29 AC 2,056 ms
145,304 KB
testcase_30 AC 2,074 ms
145,368 KB
testcase_31 AC 2,055 ms
145,560 KB
testcase_32 AC 2,060 ms
145,892 KB
testcase_33 AC 2,073 ms
145,548 KB
testcase_34 AC 84 ms
5,700 KB
testcase_35 AC 83 ms
5,784 KB
testcase_36 AC 83 ms
5,872 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 91 ms
5,952 KB
testcase_44 AC 91 ms
5,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#define endl '\n'

using namespace std;

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

int n;
bool is[maxn];
long long ans;
vector <int> not_taken[maxn];
int 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) {
    for (auto i: get_divisors(x))
        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) {
    for (auto i: get_divisors(x)) {
        if (i > bucket) {
            for (auto j: not_taken[i])
                if (is[j])
                    pq.push(edge(x, j, (long long)x * j / i));         
        }

        else {
            if (!taken[i] || x < taken[i])
                taken[i] = x;
        }
    }
}

edge get_best_edge(priority_queue <edge> &pq) { 
    while (!pq.empty()) {
        auto e = pq.top();
        if (!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].back()])
        not_taken[idx].pop_back();

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

    int a = taken[idx], b = not_taken[idx].back();
    return edge(a, b, (long long)a * b / 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() {
    int left = 0;
    for (int i = maxn-1; i >= 1; 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--;

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

            break;
        }

    cout << ans << endl;
}

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

    read();
    solve();
}
0