結果
問題 | No.2025 Select $k$-th Submultiset |
ユーザー | ymatsux |
提出日時 | 2022-07-24 15:22:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,844 bytes |
コンパイル時間 | 2,404 ms |
コンパイル使用メモリ | 209,704 KB |
実行使用メモリ | 17,340 KB |
最終ジャッジ日時 | 2024-07-06 09:54:14 |
合計ジャッジ時間 | 8,211 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 102 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> constexpr int DEBUG = 0; using namespace std; using int64 = long long; template<typename T> vector<vector<T>> Make2D(int d1, int d2, T default_value) { return vector<vector<T>>(d1, vector<T>(d2, default_value)); } template<typename T> ostream& operator<<(ostream& s, const vector<T>& v) { s << "["; for (int i = 0; i < int(v.size()); i++) { if (i > 0) { s << ", "; } s << v[i]; } s << "]"; return s; } constexpr int64 INF = 2E18; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, l; cin >> n >> l; vector<int> cs(n); for (int i = 0; i < n; i++) { cin >> cs[i]; } auto count_table = Make2D<int64>(n, l + 1, 0); auto c_sum_table = Make2D<int64>(n, l + 1 + 1, 0); for (int j = 0; j <= cs[n - 1]; j++) { count_table[n - 1][j] = 1; } for (int j = 0; j <= l; j++) { c_sum_table[n - 1][j + 1] = c_sum_table[n - 1][j] + count_table[n - 1][j]; } for (int i = n - 2; i >= 0; i--) { for (int j = 0; j <= l; j++) { int k = min(j, cs[i]); count_table[i][j] = c_sum_table[i + 1][j + 1] - c_sum_table[i + 1][j - k]; } for (int j = 0; j <= l; j++) { c_sum_table[i][j + 1] = c_sum_table[i][j] + count_table[i][j]; } } cerr << count_table << endl; int q_count; cin >> q_count; for (int q_index = 0; q_index < q_count; q_index++) { int64 q; cin >> q; q--; if (q >= count_table[0][l]) { cout << -1 << endl; continue; } int r = l; int64 b = 0; for (int i = 0; i < n - 1; i++) { for (int j = min(r, cs[i]); j >= 0; j--) { if (q < b + count_table[i + 1][r - j]) { cout << j << " "; r -= j; q -= b; b = 0; break;; } else { b += count_table[i + 1][r - j]; } } } cout << r << endl; } }