結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-23 21:52:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,287 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 210,996 KB
実行使用メモリ 15,204 KB
最終ジャッジ日時 2024-08-23 21:52:13
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 21 ms
6,944 KB
testcase_02 AC 31 ms
14,924 KB
testcase_03 AC 22 ms
14,904 KB
testcase_04 AC 39 ms
12,976 KB
testcase_05 AC 27 ms
8,940 KB
testcase_06 AC 32 ms
11,696 KB
testcase_07 AC 22 ms
8,436 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 38 ms
13,492 KB
testcase_10 AC 46 ms
14,540 KB
testcase_11 AC 22 ms
8,324 KB
testcase_12 AC 47 ms
13,852 KB
testcase_13 AC 11 ms
6,944 KB
testcase_14 AC 12 ms
7,552 KB
testcase_15 AC 50 ms
14,280 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 37 ms
12,340 KB
testcase_18 AC 24 ms
7,544 KB
testcase_19 AC 50 ms
13,644 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 52 ms
15,204 KB
testcase_22 AC 103 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int T; cin >> T;
    while(T--){
        int K,M,N; cin >> K >> M >> N; M--;
        if(M == 0){cout << "No\n"; continue;}
        vector<vector<int>> Graph(K);
        for(int i=0; i<K; i++) Graph.at(i).push_back((i+M)%K);
        
        vector<bool> already(K);
        vector<int> answer;
        for(int i=0; i<K; i++){
            if(already.at(i)) continue;
            already.at(i) = true;
            queue<int> Q; Q.push(i);
            bool ok = true;
            while(Q.size()){
                int pos = Q.front(); Q.pop();
                if(ok) answer.push_back(pos),ok = false;
                else ok = true;
                for(auto to : Graph.at(pos)){
                    if(already.at(to)){
                        if(ok == false) answer.pop_back();
                        break;
                    }
                    Q.push(to); already.at(to) = true;
                }
            }
        }
        while(answer.size() > N) answer.pop_back();
        if(answer.size() < N) cout << "No\n";
        else{
            cout << "Yes\n";
            for(int i=0; i<N; i++) cout << answer.at(i)+1 << (i==N-1?"\n":" ");
        }
    }
}
0