結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | norikame |
提出日時 | 2024-08-23 23:53:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,208 bytes |
コンパイル時間 | 2,383 ms |
コンパイル使用メモリ | 210,416 KB |
実行使用メモリ | 13,108 KB |
最終ジャッジ日時 | 2024-08-23 23:53:39 |
合計ジャッジ時間 | 7,191 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 52 ms
12,672 KB |
testcase_03 | AC | 63 ms
12,708 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 51 ms
9,468 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 75 ms
12,672 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 23 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 103 ms
13,108 KB |
testcase_22 | AC | 673 ms
6,940 KB |
ソースコード
// #include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i=0; i<(int)(n); ++(i)) #define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i)) #define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i)) #define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i)) #define all(x) (x).begin(), (x).end() const int INF = (int)(1e9); int main() { int t0; cin >> t0; rep(i0, t0) { int k, m, n; cin >> k >> m >> n; if ((1+m-2)%k+1 == 1) { cout << "No" << endl; continue; } vector<int> res; unordered_set<int> st; int rm = k - m + 2; rep3(i, 1, k+1) st.insert(i); rep3(i, 1, k+1) { int bi = (i+m-2)%k+1, ai = (i+rm-2)%k+1; if (i != bi && st.find(i) != st.end() && st.find(bi) != st.end()) { res.push_back(i); st.erase(i); st.erase(bi); if ((int)res.size() == n) break; } else if (i != ai && st.find(i) != st.end() && st.find(ai) != st.end()) { res.push_back(ai); st.erase(i); st.erase(ai); if ((int)res.size() == n) break; } } if ((int)res.size() < n) { res.clear(); rep3(i, 1, k+1) st.insert(i); rep3(i, 1, k+1) { int bi = (i+m-2)%k+1, ai = (i+rm-2)%k+1; if (i != ai && st.find(i) != st.end() && st.find(ai) != st.end()) { res.push_back(ai); st.erase(i); st.erase(ai); if ((int)res.size() == n) break; } else if (i != bi && st.find(i) != st.end() && st.find(bi) != st.end()) { res.push_back(i); st.erase(i); st.erase(bi); if ((int)res.size() == n) break; } } } if ((int)(res.size()) < n) cout << "No" << endl; else { cout << "Yes" << endl; rep(i, n) cout << res[i] << (i<n-1?' ':'\n'); } } return 0; }