結果

問題 No.2025 Select $k$-th Submultiset
ユーザー KudeKude
提出日時 2022-07-29 22:57:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 2,082 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 225,252 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-07-19 16:15:13
合計ジャッジ時間 7,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 78 ms
9,600 KB
testcase_04 AC 54 ms
9,600 KB
testcase_05 AC 86 ms
8,960 KB
testcase_06 AC 67 ms
8,064 KB
testcase_07 AC 72 ms
9,600 KB
testcase_08 AC 71 ms
8,960 KB
testcase_09 AC 80 ms
9,472 KB
testcase_10 AC 83 ms
9,472 KB
testcase_11 AC 79 ms
8,704 KB
testcase_12 AC 81 ms
9,728 KB
testcase_13 AC 60 ms
9,088 KB
testcase_14 AC 71 ms
9,344 KB
testcase_15 AC 88 ms
9,216 KB
testcase_16 AC 74 ms
9,216 KB
testcase_17 AC 78 ms
9,344 KB
testcase_18 AC 82 ms
8,448 KB
testcase_19 AC 75 ms
8,064 KB
testcase_20 AC 77 ms
8,192 KB
testcase_21 AC 68 ms
8,704 KB
testcase_22 AC 81 ms
8,704 KB
testcase_23 AC 83 ms
8,960 KB
testcase_24 AC 68 ms
8,832 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 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 1 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

ll dp[5][100010];
ll s[5][100010];

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, l;
  cin >> n >> l;
  int c[4]{};
  rep(i, n) cin >> c[i];
  dp[4][0] = 1;
  rrep(k, 4) {
    rep(i, l + 1) {
      dp[k][i] += dp[k+1][i];
      if (i + c[k] + 1 <= l) dp[k][i+c[k]+1] -= dp[k+1][i];
    }
    rep(i, l) dp[k][i+1] += dp[k][i];
    rep(i, l+1) s[k][i+1] = s[k][i] + dp[k][i];
  }
  // rep(k, 3) {
  //   rep(i, 7) cout << dp[k][i] << ' ';
  //   cout << endl;
  // }
  int q;
  cin >> q;
  while(q--) {
    ll K;
    cin >> K;
    K--;
    if (K >= dp[0][l]) {
      cout << -1 << '\n';
      continue;
    }
    int a[4]{};
    int rest = l;
    rep(k, 4) {
      int mn = rest;
      for(int t = k + 1; t < 4; t++) mn -= c[t];
      chmax(mn, 0);
      int mx = min(rest, c[k]);
      int l = mn - 1, r = mx;
      while(r - l > 1) {
        int mid = (l + r) / 2;
        // [rest-mx, rest-mid)
        ll skip = s[k+1][rest - mid] - s[k+1][rest - mx];
        if (skip <= K) {
          r = mid;
        } else {
          l = mid;
        }
      }
      a[k] = r;
      ll skip = s[k+1][rest - r] - s[k+1][rest - mx];
      K -= skip;
      rest -= r;
    }
    // cout << K << endl;
    // rep(i, 3) cout << a[i] << ' ';
    // cout << endl;
    assert(K == 0);
    rep(i, n) cout << a[i] << " \n"[i + 1 == n];
  }
}
0