結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー norikamenorikame
提出日時 2024-08-23 23:19:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,247 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 209,840 KB
実行使用メモリ 12,980 KB
最終ジャッジ日時 2024-08-23 23:19:51
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 53 ms
12,740 KB
testcase_03 AC 38 ms
12,820 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 30 ms
8,960 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
12,672 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 16 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 79 ms
12,980 KB
testcase_22 AC 646 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#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;
        rep3(i, 1, k+1) st.insert(i);
        rep(i2, 2) {
            rep3(i, 1, k+1) {
                int bi = (i+m-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;
                }
            }
        }
        if ((int)(res.size()) < n) cout << "No" << endl;
        else {
            cout << "Yes" << endl;
            rep(i, n) cout << res[i] << (i<n-1?' ':'\n');
        }
    }
    return 0;
}
0