結果

問題 No.1633 Sorting Integers (Multiple of 2^K)
ユーザー momoyuumomoyuu
提出日時 2024-10-06 21:28:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,366 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 143,352 KB
実行使用メモリ 135,296 KB
最終ジャッジ日時 2024-10-06 21:28:35
合計ジャッジ時間 5,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<unordered_map>
#include<map>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n;
    cin>>n;
    vector<int> c(10,0);
    for(int i = 1;i<=9;i++) cin>>c[i];
    if(n==1){
        int ans = 0;
        for(int i = 1;i<=9;i++) ans += c[i];
        int cnt = 0;
        while(true){
            if(ans&1) break;
            ans >>= 1;
            cnt++;
        }
        cout<<cnt<<endl;
        return 0;
    }

    for(int kk = 47;kk>=0;kk--){
        ll k = 1ll << kk;
        //cout<<k<<endl;

        vector<ll> a,b;
        ll now = 1;
        for(int i = 0;i<n;i++){
            if(i%2==0) a.push_back(now);
            else b.push_back(now);
            now *= 10;
        }
        map<vector<int>,unordered_map<ll,int>> m1,m2;
        vector<int> use(10,0);
        ll ans = 0;
        auto calc = [&](vector<int>&now) {
            vector<int> all;
            for(int i = 1;i<=9;i++) for(int j = 0;j<now[i];j++) all.push_back(i);
            sort(all.begin(),all.end());
            do{
                ll sum = 0;
                for(int i = 0;i<a.size();i++){
                    sum += a[i] * all[i];
                    sum %= k;
                }
                m1[now][sum]++;
            }while(next_permutation(all.begin(),all.end()));
            
        };
        auto dfs = [&](auto dfs,int ni,int res) -> void {
            if(res==0){
                calc(use);
                return;
            }
            for(int i = ni;i<=9;i++){
                if(c[i]==0) continue;
                c[i]--;
                use[i]++;
                dfs(dfs,i,res-1);
                use[i]--;
                c[i]++;
            }
        };
        dfs(dfs,1,a.size());
        swap(a,b);
        swap(m1,m2);
        dfs(dfs,1,a.size());

        for(auto itr:m1){
            auto use = itr.first;
            vector<int> want(10,0);
            for(int i = 1;i<=9;i++) want[i] = c[i] - use[i];
            auto now = m2[want];
            for(auto nn:itr.second){
                ll w = k - nn.first;
                w %= k;
                if(w<0) w += k;
                ans += nn.second * now[w];
            }
        }

        if(ans==0) continue;

        cout<<kk<<endl;
        return 0;
    }


}

0