結果

問題 No.1633 Sorting Integers (Multiple of 2^K)
ユーザー momoyuumomoyuu
提出日時 2024-10-06 21:31:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,885 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 146,292 KB
実行使用メモリ 128,628 KB
最終ジャッジ日時 2024-10-06 21:32:13
合計ジャッジ時間 19,972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 47 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 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 3 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 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 1,427 ms
128,492 KB
testcase_25 AC 1,430 ms
128,628 KB
testcase_26 AC 8 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1,433 ms
128,492 KB
testcase_29 AC 8 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 935 ms
20,528 KB
testcase_34 AC 91 ms
5,248 KB
testcase_35 AC 333 ms
11,136 KB
testcase_36 AC 226 ms
7,040 KB
testcase_37 AC 1,519 ms
28,928 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 524 ms
9,728 KB
testcase_40 AC 113 ms
5,248 KB
testcase_41 AC 1,567 ms
50,052 KB
testcase_42 AC 121 ms
5,248 KB
testcase_43 AC 772 ms
14,848 KB
testcase_44 AC 1,847 ms
83,408 KB
testcase_45 AC 883 ms
30,452 KB
testcase_46 AC 339 ms
7,040 KB
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

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>=31;kk--){
        ll k = 1ll << kk;
        while(true){
            string s = to_string(k);
            if(s.size()>n) break;
            if(s.size()<n){
                k += 1ll << kk;
                continue;
            }
            vector<int> nc(10,0);
            for(int i = 0;i<s.size();i++){
                int ni = s[i] - '0';
                nc[ni]++;
            }
            if(c==nc){
                cout<<kk<<endl;
                return 0;
            }
            k += 1ll << kk;
        }
    }
    for(int kk = 30;kk>=0;kk--){
        ll k = 1ll << kk;

        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