結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー テナガザルテナガザル
提出日時 2024-08-23 23:18:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,255 bytes
コンパイル時間 1,145 ms
コンパイル使用メモリ 99,608 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 23:18:44
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

void solve()
{
  int k, m, n;
  cin >> k >> m >> n;
  if (n * 2 > k || m == 1)
  {
    cout << "No" << endl;
    return;
  }
  auto cal = [&](int d) -> int {return (d + m - 2) % k + 1;};
  vector<int> ans, used(k + 1);
  int now = 1, s = 1;
  while (ans.size() < n)
  {
    while (now <= k && used[now]) ++now;
    if (now > k) break;
    int d = cal(now);
    if (!used[d])
    {
      used[now] = 1;
      used[d] = 1;
      ans.push_back(now);
    }
    else ++now;
  }
  if (ans.size() == n)
  {
    cout << "Yes" << endl;
    for (auto v : ans) cout << v << ' ';
    cout << endl;
    return;
  }
  ans.clear();
  now = 1;
  used.assign(k + 1, 0);
  while (ans.size() < n)
  {
    while (s <= k && (used[s] || used[cal(s)])) ++s;
    if (s > k) break;
    now = s;
    while (ans.size() < n && !used[now] && !used[cal(now)])
    {
      ans.push_back(now);
      used[now] = 1;
      used[cal(now)] = 1;
      now += m;
      now = (now - 1) % k + 1;
    }
  }
  if (ans.size() == n)
  {
    cout << "Yes" << endl;
    for (auto v : ans) cout << v << ' ';
    cout << endl;
  }
  else cout << "No" << endl;
}

int main()
{
  int t;
  cin >> t;
  while (t--) solve();
}
0