結果

問題 No.937 Ultra Sword
ユーザー kimiyukikimiyuki
提出日時 2019-12-01 16:01:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 3,000 ms
コード長 2,210 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 211,428 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-11-21 10:43:36
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 10 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 88 ms
5,248 KB
testcase_06 AC 113 ms
5,248 KB
testcase_07 AC 125 ms
5,248 KB
testcase_08 AC 61 ms
5,248 KB
testcase_09 AC 49 ms
5,248 KB
testcase_10 AC 137 ms
5,248 KB
testcase_11 AC 27 ms
5,248 KB
testcase_12 AC 127 ms
5,248 KB
testcase_13 AC 123 ms
5,248 KB
testcase_14 AC 142 ms
5,248 KB
testcase_15 AC 106 ms
5,248 KB
testcase_16 AC 5 ms
5,248 KB
testcase_17 AC 13 ms
5,248 KB
testcase_18 AC 117 ms
5,248 KB
testcase_19 AC 68 ms
5,248 KB
testcase_20 AC 60 ms
5,248 KB
testcase_21 AC 146 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 116 ms
5,248 KB
testcase_25 AC 95 ms
5,376 KB
testcase_26 AC 81 ms
5,248 KB
testcase_27 AC 81 ms
5,248 KB
testcase_28 AC 93 ms
5,248 KB
testcase_29 AC 12 ms
5,248 KB
testcase_30 AC 69 ms
5,248 KB
testcase_31 AC 104 ms
5,376 KB
testcase_32 AC 64 ms
5,248 KB
testcase_33 AC 104 ms
5,248 KB
testcase_34 AC 26 ms
5,248 KB
testcase_35 AC 16 ms
5,248 KB
testcase_36 AC 93 ms
5,248 KB
testcase_37 AC 16 ms
5,248 KB
testcase_38 AC 73 ms
5,248 KB
testcase_39 AC 13 ms
5,248 KB
testcase_40 AC 83 ms
5,248 KB
testcase_41 AC 37 ms
5,248 KB
testcase_42 AC 67 ms
5,248 KB
testcase_43 AC 62 ms
5,248 KB
testcase_44 AC 32 ms
5,248 KB
testcase_45 AC 43 ms
5,248 KB
testcase_46 AC 52 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i))
#define REP3(i, m, n) for (int i = (m); (i) < (int)(n); ++ (i))
#define REP_R(i, n) for (int i = (int)(n) - 1; (i) >= 0; -- (i))
#define ALL(x) std::begin(x), std::end(x)
using namespace std;
template <class T, class U> inline void chmin(T & a, U const & b) { a = min<T>(a, b); }

/**
 * @note O(\sqrt{n})
 */
struct prepared_primes {
    int size;
    std::vector<int> sieve;
    std::vector<int> primes;

    prepared_primes(int size_)
        : size(size_) {

        sieve.resize(size);
        REP3 (p, 2, size) if (sieve[p] == 0) {
            primes.push_back(p);
            for (int k = p; k < size; k += p) {
                if (sieve[k] == 0) {
                    sieve[k] = p;
                }
            }
        }
    }
};

int64_t solve(int n, const vector<int64_t> & a) {
    // Gaussian elimination
    vector<int64_t> basis;
    for (int64_t a_i : a) {
        for (int k = 0; (a_i << k) < (1ull << 40); ++ k) {
            int64_t x = a_i << k;
            for (int64_t b : basis) {
                chmin(x, x ^ b);
            }
            if (x) {
                basis.push_back(x);
            }
        }
    }

    // list constructibles
    int64_t max_a = *max_element(ALL(a));
    vector<bool> constructed(max_a + 1);
    constructed[0] = true;
    for (int64_t b : basis) {
        REP (x, max_a) if (constructed[x]) {
            if ((b ^ x) < constructed.size()) {
                constructed[b ^ x] = true;
            }
        }
    }

    // fast zeta transform
    prepared_primes primes(1e5 + 3);
    vector<int64_t> acc(max_a + 1);
    for (int64_t a_i : a) {
        acc[a_i] += a_i;
    }
    for (int64_t p : primes.primes) {
        REP_R (x, max_a / p + 1) {
            acc[x] += acc[x * p];
        }
    }

    // answer
    int64_t sum = accumulate(ALL(a), 0ll);
    int64_t answer = INT64_MAX;
    REP3 (x, 1, max_a + 1) if (constructed[x]) {
        chmin(answer, sum - acc[x] + acc[x] / x);
    }
    return answer;
}

int main() {
    int n; cin >> n;
    vector<int64_t> a(n);
    REP (i, n) {
        cin >> a[i];
    }
    cout << solve(n, a) << endl;
    return 0;
}
0