結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー 佐藤篤樹佐藤篤樹
提出日時 2024-08-23 22:02:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 2,577 bytes
コンパイル時間 1,658 ms
コンパイル使用メモリ 174,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-08-23 22:02:37
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 26 ms
6,944 KB
testcase_02 AC 63 ms
12,928 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 52 ms
11,008 KB
testcase_05 AC 35 ms
7,808 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 25 ms
7,424 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 9 ms
6,944 KB
testcase_12 AC 48 ms
11,904 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 7 ms
6,944 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 9 ms
6,944 KB
testcase_18 AC 28 ms
6,944 KB
testcase_19 AC 48 ms
11,648 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 65 ms
12,928 KB
testcase_22 AC 537 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, a, b) for(ll i = a; i < b; ++i)
#define rrep(i, a, b) for(ll i = a; i >= b; --i)
constexpr ll inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
using dd = long double;
using vl = vector<ll>;
using vvl = vector<vl>;
using vd = vector<dd>;
using vvd = vector<vd>;

ll gcd(ll a, ll b) {
    if (b == 0) return a;
    return gcd(b, a%b);
}

int main(void) {

    // rep(k,1,10) {
    //     rep(m,1,k+1) {
    //         rep(n,1,k+1){
    //             cout << k << " " << m << " " << n << endl;
    //         }
    //     }
    // }

    ll t;cin>>t;
    rep(i,0,t) {
        ll k,m,n;cin>>k>>m>>n;
        if (m == 1) {
            cout << "No" << endl;
            continue;
        }

        ll g = gcd(k, m-1);
        ll Loop_Size = k / g;
        ll Loop_Num = g;
        ll n_per_Loop = Loop_Size / 2;
        ll max_n = n_per_Loop * Loop_Num;
        if (max_n >= n) {
            cout << "Yes" << endl;
            ll cnt = 0;
            set<ll> st;
            rep(i,1,g+1) {
                ll now = i;
                ll tmp = 0;
                while(true) {
                    if (tmp % 2 == 0) {
                        st.insert(now);
                        st.insert((now + m - 2) % k + 1); 

                        cnt += 1;
                        if (cnt == n) {
                            cout << now << endl;
                            break;
                        } else {
                            cout << now << " ";
                        }
                    }
                    now += (m-1);
                    while (now > k) {
                        now -= k;
                    }
                    tmp += 1;
                    if (now == i) {
                        break;
                    }
                    if (tmp >= Loop_Size - 1) {
                        break;
                    }
                }
                if(cnt == n) {
                    break;
                }
            }
            // assert(cnt == n);

            // for (ll x : st) {
            //     cout << x << " ";
            // }
            // cout << endl;

            // if ((ll)st.size() != n * 2) {
            //     cout << "k = " << k << " m = " << m << " n = " << n << endl;
            //     return 0;
            // }
        } else {
            cout << "No" << endl;
        }
    }
    return 0;
}
0