結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-08-23 21:55:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 204,436 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:55:44
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using vi = std::vector<int> ;
void solve() {
	int K, M, N;
	cin >> K >> M >> N;
	M --;
	if (M == 0) {
		puts("No");
		return;
	}
	vi did(K, 0);
	vi ans;
	for (int d = 0; d < K; d ++) {
		if (did[d]) continue;
		int a = d, b = (d + M) % K;
		while ((!did[a]) && (!did[b])) {
			did[a] = did[b] = 1;
			ans.push_back(a);
			a = (a + M * 2) % K;
			b = (b + M * 2) % K;
		}
		did[a] = did[b] = 1;
	}
	if (ans.size() < N) {
		puts("No");
	} else {
		puts("Yes");
		for (int i = 0; i < N; i ++) {
			cout << ans[i] + 1 << (i < N - 1 ? " " : "");
		}
		cout << endl;
	}
}
int main () {
	int T;
	cin >> T;
	while (T--) solve();
}
0