結果

問題 No.2045 Two Reflections
ユーザー SSRSSSRS
提出日時 2022-08-19 21:57:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 200,156 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 00:37:13
合計ジャッジ時間 3,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N, p, q;
  cin >> N >> p >> q;
  if (p == 1 && q == 1){
    cout << 1 << endl;
  } else if (p == 1 || q == 1){
    cout << 2 << endl;
  } else {
    vector<int> A(N);
    for (int i = 0; i < N; i++){
      A[i] = i;
    }
    reverse(A.begin(), A.begin() + p);
    reverse(A.end() - q, A.end());
    vector<int> c;
    vector<bool> used(N, false);
    for (int i = 0; i < N; i++){
      if (!used[i]){
        used[i] = true;
        int cnt = 1;
        int p = i;
        while (true){
          p = A[p];
          if (used[p]){
            break;
          }
          used[p] = true;
          cnt++;
        }
        c.push_back(cnt);
      }
    }
    int cnt = c.size();
    long long ans = 1;
    for (int i = 0; i < cnt; i++){
      ans = lcm(ans, c[i]);
    }
    cout << ans * 2 % MOD << endl;
  }
}
0