結果
問題 | No.2025 Select $k$-th Submultiset |
ユーザー | SSRS |
提出日時 | 2022-07-29 23:19:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 980 ms / 2,000 ms |
コード長 | 2,341 bytes |
コンパイル時間 | 1,712 ms |
コンパイル使用メモリ | 173,060 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 16:51:34 |
合計ジャッジ時間 | 23,834 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 831 ms
6,940 KB |
testcase_04 | AC | 554 ms
6,940 KB |
testcase_05 | AC | 791 ms
6,944 KB |
testcase_06 | AC | 837 ms
6,940 KB |
testcase_07 | AC | 822 ms
6,940 KB |
testcase_08 | AC | 901 ms
6,944 KB |
testcase_09 | AC | 850 ms
6,940 KB |
testcase_10 | AC | 859 ms
6,944 KB |
testcase_11 | AC | 804 ms
6,940 KB |
testcase_12 | AC | 924 ms
6,944 KB |
testcase_13 | AC | 915 ms
6,944 KB |
testcase_14 | AC | 980 ms
6,940 KB |
testcase_15 | AC | 756 ms
6,940 KB |
testcase_16 | AC | 894 ms
6,944 KB |
testcase_17 | AC | 856 ms
6,940 KB |
testcase_18 | AC | 888 ms
6,940 KB |
testcase_19 | AC | 857 ms
6,940 KB |
testcase_20 | AC | 864 ms
6,940 KB |
testcase_21 | AC | 953 ms
6,940 KB |
testcase_22 | AC | 888 ms
6,944 KB |
testcase_23 | AC | 889 ms
6,940 KB |
testcase_24 | AC | 915 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 3 ms
6,940 KB |
testcase_37 | AC | 2 ms
6,944 KB |
testcase_38 | AC | 2 ms
6,940 KB |
testcase_39 | AC | 2 ms
6,940 KB |
testcase_40 | AC | 2 ms
6,940 KB |
testcase_41 | AC | 1 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,940 KB |
testcase_43 | AC | 2 ms
6,940 KB |
testcase_44 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:76:11: warning: 'cnt' may be used uninitialized [-Wmaybe-uninitialized] 76 | if (cnt <= k){ | ^~ main.cpp:66:21: note: 'cnt' was declared here 66 | long long cnt; | ^~~
ソースコード
#include <bits/stdc++.h> using namespace std; long long count(vector<int> c, int L){ int N = c.size(); int F = 1; for (int i = 0; i < N - 1; i++){ F *= i + 1; } long long ans = 0; for (int i = 0; i < (1 << N); i++){ int L2 = L; for (int j = 0; j < N; j++){ if ((i >> j & 1) == 1){ L2 -= c[j]; } } if (L2 >= 0){ long long p = 1; for (int j = 0; j < N - 1; j++){ p *= L2 + j + 1; } p /= F; if (__builtin_parity(i) == 0){ ans += p; } else { ans -= p; } } } return ans; } int main(){ int N, L; cin >> N >> L; vector<int> c(4, 1); for (int i = 4 - N; i < 4; i++){ cin >> c[i]; c[i]++; } long long sum = count(c, L); int Q; cin >> Q; for (int i = 0; i < Q; i++){ long long k; cin >> k; k--; if (k >= sum){ cout << -1 << endl; } else { int L2 = L; vector<int> ans(4, 0); for (int j = 0; j < 4; j++){ int p = 0; if (L2 < c[j]){ if (k == 0){ ans[j] = L2; break; } k--; p = 1; } int tv = min(L2, c[j]); int fv = 0; while (tv - fv > 1){ int mid = (tv + fv) / 2; long long cnt; if (j == 0){ cnt = sum - count(vector<int>{mid, c[1], c[2], c[3]}, L2) - p; } if (j == 1){ cnt = count(vector<int>{c[1], c[2], c[3]}, L2) - count(vector<int>{mid, c[2], c[3]}, L2) - p; } if (j == 2){ cnt = count(vector<int>{c[2], c[3]}, L2) - count(vector<int>{mid, c[3]}, L2) - p; } if (cnt <= k){ tv = mid; } else { fv = mid; } } ans[j] = fv; if (j == 0){ k -= sum - count(vector<int>{tv, c[1], c[2], c[3]}, L2) - p; } if (j == 1){ k -= count(vector<int>{c[1], c[2], c[3]}, L2) - count(vector<int>{tv, c[2], c[3]}, L2)- p; } if (j == 2){ k -= count(vector<int>{c[2], c[3]}, L2) - count(vector<int>{tv, c[3]}, L2) - p; } L2 -= fv; } for (int j = 4 - N; j < 4; j++){ cout << ans[j]; if (j < 3){ cout << ' '; } } cout << endl; } } }