結果

問題 No.2025 Select $k$-th Submultiset
ユーザー RubikunRubikun
提出日時 2022-07-29 22:45:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 1,881 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 204,772 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-19 15:58:25
合計ジャッジ時間 7,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 97 ms
10,368 KB
testcase_04 AC 73 ms
10,496 KB
testcase_05 AC 102 ms
8,704 KB
testcase_06 AC 90 ms
7,424 KB
testcase_07 AC 88 ms
8,576 KB
testcase_08 AC 92 ms
8,064 KB
testcase_09 AC 99 ms
9,216 KB
testcase_10 AC 102 ms
8,832 KB
testcase_11 AC 96 ms
8,320 KB
testcase_12 AC 102 ms
8,960 KB
testcase_13 AC 82 ms
7,808 KB
testcase_14 AC 86 ms
8,320 KB
testcase_15 AC 97 ms
8,704 KB
testcase_16 AC 94 ms
8,704 KB
testcase_17 AC 96 ms
8,576 KB
testcase_18 AC 99 ms
8,192 KB
testcase_19 AC 94 ms
7,936 KB
testcase_20 AC 98 ms
8,064 KB
testcase_21 AC 88 ms
7,680 KB
testcase_22 AC 95 ms
8,064 KB
testcase_23 AC 98 ms
8,576 KB
testcase_24 AC 88 ms
7,936 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=1<<30;

ll dp[5][MAX];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int N,L;cin>>N>>L;
    vector<int> c(N);
    for(int i=0;i<N;i++) cin>>c[i];
    dp[N][0]=1;
    for(int i=N;i>=1;i--){
        for(int j=0;j<=L;j++){
            dp[i-1][j]+=dp[i][j];
            dp[i-1][j+c[i-1]+1]-=dp[i][j];
        }
        for(int j=1;j<=L;j++) dp[i-1][j]+=dp[i-1][j-1];
    }
    
    for(int t=0;t<=N;t++){
        for(int j=1;j<=L;j++) dp[t][j]+=dp[t][j-1];
    }
    
    int Q;cin>>Q;
    while(Q--){
        ll x;cin>>x;x--;
        if(x>=(dp[0][L]-dp[0][L-1])){
            cout<<-1<<"\n";
            continue;
        }
        vector<int> ans;
        int rem=L;
        for(int t=0;t<N-1;t++){
            int left=0,right=min(c[t],rem)+1;
            while(right-left>1){
                int mid=(left+right)/2;
                ll xx=dp[t+1][rem-mid];
                if(rem-min(c[t],rem)>0) xx-=dp[t+1][rem-min(c[t],rem)-1];
                if(xx>x){
                    left=mid;
                }else{
                    right=mid;
                }
            }
            ans.push_back(left);
            ll xx=dp[t+1][rem-right];
            if(rem-min(c[t],rem)>0) xx-=dp[t+1][rem-min(c[t],rem)-1];
            x-=xx;
            rem-=left;
        }
        ans.push_back(rem);
        
        for(int x:ans) cout<<x<<" ";
        cout<<"\n";
    }
}
0