結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー Today03Today03
提出日時 2024-08-23 23:45:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 691 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 211,524 KB
実行使用メモリ 7,304 KB
最終ジャッジ日時 2024-08-23 23:45:26
合計ジャッジ時間 5,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 35 ms
6,944 KB
testcase_02 AC 15 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 14 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 8 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 8 ms
6,944 KB
testcase_19 AC 14 ms
6,948 KB
testcase_20 AC 6 ms
6,944 KB
testcase_21 AC 32 ms
7,304 KB
testcase_22 AC 691 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int T;
    cin >> T;

    while (T--) {
        int K, M, N;
        cin >> K >> M >> N;
        M--;

        vector<bool> seen(K, false);
        vector<vector<int>> gr;

        for (int i = 0; i < K; i++) {
            if (!seen[i]) {
                gr.push_back({});
                int now = i;
                while (!seen[now]) {
                    seen[now] = true;
                    gr.back().push_back(now);
                    now += M;
                    now %= K;
                }
            }
        }

        vector<int> ans;
        for (vector<int> ve : gr) {
            int k = ve.size();
            for (int i = 0; i + 1 < k; i += 2) {
                ans.push_back(ve[i] + 1);
            }
        }

        if (ans.size() >= N) {
            cout << "Yes" << endl;
            for (int i = 0; i < N; i++) {
                cout << ans[i] << ' ';
            }
            cout << endl;
        } else {
            cout << "No" << endl;
        }
    }
}
0