結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー tnakao0123tnakao0123
提出日時 2024-08-24 17:16:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 44,672 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-24 17:16:58
合計ジャッジ時間 2,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2845.cc:  No.2845 Birthday Pattern in Two Different Calendars - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_K = 200000;

/* typedef */

/* global variables */

bool used[MAX_K], fs[MAX_K];
int as[MAX_K];

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int k, m, n;
    scanf("%d%d%d", &k, &m, &n);
    m--;
    if (m == 0) { puts("No"); continue; }
    
    fill(fs, fs + k, false);
    fill(used, used + k, false);
    int l = 0;
    
    for (int st = 0; st < k; st++)
      if (! fs[st]) {
	for (int u = st; ! fs[u];) {
	  fs[u] = true;
	  int v = (u + m) % k;
	  if (! used[u] && ! used[v]) {
	    as[l++] = u;
	    used[u] = used[v] = true;
	  }
	  u = v;
	}
      }

    if (l >= n) {
      puts("Yes");
      for (int i = 0; i < n; i++)
	printf("%d%c", as[i] + 1, (i + 1 < n) ? ' ' : '\n');
    }
    else
      puts("No");
  }

  return 0;
}
0