結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-21 10:40:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,196 ms / 3,000 ms
コード長 1,224 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 181,800 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-05-01 02:19:28
合計ジャッジ時間 9,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 49 ms
6,944 KB
testcase_06 AC 736 ms
15,872 KB
testcase_07 AC 790 ms
16,768 KB
testcase_08 AC 393 ms
10,752 KB
testcase_09 AC 283 ms
9,216 KB
testcase_10 AC 870 ms
17,536 KB
testcase_11 AC 36 ms
6,944 KB
testcase_12 AC 83 ms
6,940 KB
testcase_13 AC 83 ms
6,944 KB
testcase_14 AC 89 ms
6,940 KB
testcase_15 AC 75 ms
6,940 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 23 ms
6,944 KB
testcase_18 AC 83 ms
6,944 KB
testcase_19 AC 60 ms
6,944 KB
testcase_20 AC 56 ms
6,940 KB
testcase_21 AC 1,196 ms
26,112 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 77 ms
6,940 KB
testcase_25 AC 62 ms
6,944 KB
testcase_26 AC 87 ms
6,940 KB
testcase_27 AC 69 ms
6,944 KB
testcase_28 AC 101 ms
6,944 KB
testcase_29 AC 24 ms
6,940 KB
testcase_30 AC 100 ms
6,940 KB
testcase_31 AC 83 ms
6,940 KB
testcase_32 AC 50 ms
6,940 KB
testcase_33 AC 68 ms
6,940 KB
testcase_34 AC 70 ms
6,940 KB
testcase_35 AC 27 ms
6,940 KB
testcase_36 AC 73 ms
6,944 KB
testcase_37 AC 38 ms
6,940 KB
testcase_38 AC 66 ms
6,944 KB
testcase_39 AC 26 ms
6,944 KB
testcase_40 AC 59 ms
6,940 KB
testcase_41 AC 37 ms
6,940 KB
testcase_42 AC 51 ms
6,940 KB
testcase_43 AC 61 ms
6,940 KB
testcase_44 AC 93 ms
6,940 KB
testcase_45 AC 52 ms
6,944 KB
testcase_46 AC 102 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
using namespace std;
using ll = long long;

int GCD(int x,int y){
    if(x>y) swap(x,y);
    int Lx=32-__builtin_clz(x),Ly=32-__builtin_clz(y);
    return x?GCD(x,y^(x<<(Ly-Lx))):y;
}

bool Usable(int x,int g){
    int Lx=32-__builtin_clz(x),Lg=32-__builtin_clz(g);
    while(Lx>=Lg&&x!=0){
        x^=g<<(Lx-Lg);
        Lx=32-__builtin_clz(x);
    }
    return x==0;
}

int main(){
    int N;cin>>N;
    assert(2<=N&&N<=100000);
    int M=0, G=0;
    ll S=0;
    vector<int> A(N);
    set<int> appear;
    REP(i,N){
        cin>>A[i];
        assert(1<=A[i]&&A[i]<=1000000);
        M=max(M, A[i]);
        G=GCD(G, A[i]);
        S += A[i];
        appear.insert(A[i]);
    }
    vector<ll> mi(M+1, 0);
    map<int,vector<int>> div;
    for(int i=1;i<=M;++i){
        for(int j=i;j<=M;j+=i) {
            if(appear.count(j)){
                div[j].push_back(i);
             }
        }
    }
    REP(i,N){
        for(auto y:div[A[i]]){
            mi[y]+=A[i]-A[i]/y;
        }
    }
    ll X=S;
    rep(i,2,M+1) if(Usable(i,G)){
        X = min(X, S-mi[i]);
    }
    cout<<X<<endl;
}
0