結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー tottoripapertottoripaper
提出日時 2024-08-24 01:13:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 1,324 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 207,460 KB
実行使用メモリ 30,672 KB
最終ジャッジ日時 2024-08-24 01:13:56
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 38 ms
6,944 KB
testcase_02 AC 47 ms
30,672 KB
testcase_03 AC 38 ms
30,476 KB
testcase_04 AC 44 ms
13,196 KB
testcase_05 AC 34 ms
9,828 KB
testcase_06 AC 42 ms
22,608 KB
testcase_07 AC 27 ms
11,892 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 51 ms
27,236 KB
testcase_10 AC 55 ms
22,292 KB
testcase_11 AC 36 ms
14,852 KB
testcase_12 AC 57 ms
27,832 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 18 ms
12,928 KB
testcase_15 AC 58 ms
29,028 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 39 ms
12,468 KB
testcase_18 AC 29 ms
13,176 KB
testcase_19 AC 64 ms
27,360 KB
testcase_20 AC 17 ms
8,064 KB
testcase_21 AC 55 ms
15,108 KB
testcase_22 AC 358 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

void dfs(
    int v,
    bool selected,
    std::vector<std::vector<int>> &G,
    std::vector<bool> &visited,
    std::vector<int> &selection
){
    visited[v] = true;

    bool proceeded = false;
    for(int w : G[v]){
        if(!visited[w]){
            dfs(w, !selected, G, visited, selection);
            proceeded = true;
        }
    }

    if(selected && proceeded){
        selection.emplace_back(v);
    }
}

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

    int T;
    std::cin >> T;

    for(int _=0;_<T;_++){
        int K, M, N;
        std::cin >> K >> M >> N;

        std::vector<std::vector<int>> G(K + 1);
        for(int i=1;i<=K;i++){
            int j = (i + M - 2) % K + 1;
            G[i].emplace_back(j);
            G[j].emplace_back(i);
        }

        std::vector<bool> visited(K + 1, 0);
        std::vector<int> selection;
        for(int i=1;i<=K;i++){
            if(!visited[i]){
                dfs(i, true, G, visited, selection);
            }
        }

        if(selection.size() >= N){
            std::cout << "Yes" << std::endl;
            for(int i=0;i<N;i++){
                std::cout << selection[i] << " \n"[i + 1 == N];
            }
        }else{
            std::cout << "No" << std::endl;
        }
    }
}
0