結果

問題 No.1633 Sorting Integers (Multiple of 2^K)
ユーザー momoyuumomoyuu
提出日時 2024-10-06 21:56:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,622 ms / 2,000 ms
コード長 3,709 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 140,508 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-10-06 21:56:21
合計ジャッジ時間 9,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 29 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 3 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 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 2 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 9 ms
5,248 KB
testcase_25 AC 11 ms
5,248 KB
testcase_26 AC 7 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 8 ms
5,248 KB
testcase_29 AC 7 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 468 ms
19,328 KB
testcase_34 AC 48 ms
5,248 KB
testcase_35 AC 160 ms
10,368 KB
testcase_36 AC 112 ms
6,784 KB
testcase_37 AC 865 ms
28,088 KB
testcase_38 AC 4 ms
5,248 KB
testcase_39 AC 252 ms
9,216 KB
testcase_40 AC 61 ms
5,248 KB
testcase_41 AC 802 ms
47,488 KB
testcase_42 AC 62 ms
5,248 KB
testcase_43 AC 439 ms
14,380 KB
testcase_44 AC 909 ms
80,256 KB
testcase_45 AC 424 ms
28,368 KB
testcase_46 AC 168 ms
6,784 KB
testcase_47 AC 1,622 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using ll = long long;

#include<unordered_map>
#include<map>

using ull = unsigned long long;
ull hah(vector<int>&c){
    const ull B = 998244353;
    ull sum = 0;
    ull now = 1;
    for(int i = 1;i<=9;i++){
        for(int j = 0;j<c[i];j++) {
            sum += (ull)i * now;
            now *= B;
        }
    }
    return sum;
}

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;
    }
    auto nnc = c;
    int cnt = 0;
    for(int kk = 47;kk>=30;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;
            }
            cnt++;
            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;
            now %= k;
        }
        map<ull,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());
            ull kkk = hah(now);
            do{
                ll sum = 0;
                for(int i = 0;i<a.size();i++){
                    sum += a[i] * all[i];
                    sum %= k;
                }
                m1[kkk][sum]++;
            }while(next_permutation(all.begin(),all.end()));
        };

        auto calc1 = [&](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());
            vector<int> nxt(10,0);
            for(int i = 1;i<=9;i++) nxt[i] = nnc[i] - now[i];
            ull kkk = hah(nxt);
            do{
                ll sum = 0;
                for(int i = 0;i<a.size();i++){
                    sum += a[i] * all[i];
                    sum %= k;
                }
                ll want = k - sum;
                want %= k;
                //cout<<k<<" "<<want<<endl;
            
                ans += m2[kkk][want];
                if(ans) break;
            }while(next_permutation(all.begin(),all.end()));
        };
        bool fn = false;
        auto dfs = [&](auto dfs,int ni,int res) -> void {
            if(res==0){
                if(!fn) calc(use);
                else calc1(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);
        fn = true;
        swap(m1,m2);
        dfs(dfs,1,a.size());
        if(ans==0) continue;

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


}

0