結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | t98slider |
提出日時 | 2024-08-23 22:35:28 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,270 bytes |
コンパイル時間 | 2,374 ms |
コンパイル使用メモリ | 207,456 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-08-23 22:35:43 |
合計ジャッジ時間 | 13,929 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,824 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 4 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 20 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | TLE | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); int T; cin >> T; while(T--){ int k, m, n; cin >> k >> m >> n; m--; if(2 * n > k){ cout << "No\n"; continue; } vector<pair<int,int>> p; p.emplace_back(1, 0); for(int i = m + 1; i <= 2 * m; i++){ p.emplace_back(i, i - m); } vector<int> dp(k + 1, -(1 << 30)), par(k + 1, -1); dp[0] = 0; for(int i = 0; i < k; i++){ for(auto &&[d, add] : p){ if(i + d > k) break; if(dp[i + d] < dp[i] + add){ dp[i + d] = dp[i] + add; par[i + d] = i; } } } if(dp[k] < n){ cout << "No\n"; continue; } vector<int> ans; int r = k; while(r != 0){ int l = par[r]; for(int i = l; i + m < r; i++){ ans.emplace_back(i + 1); } r = l; } cout << "Yes\n"; for(int i = 0; i < n; i++){ cout << ans[i] << (i + 1 == n ? '\n' : ' '); } } }