結果

問題 No.2605 Pickup Parentheses
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-12-04 21:50:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 194,512 KB
実行使用メモリ 13,248 KB
最終ジャッジ日時 2024-09-30 06:13:43
合計ジャッジ時間 8,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 92 ms
7,220 KB
testcase_19 AC 45 ms
6,816 KB
testcase_20 AC 11 ms
6,816 KB
testcase_21 AC 7 ms
6,816 KB
testcase_22 AC 6 ms
6,816 KB
testcase_23 AC 84 ms
6,976 KB
testcase_24 AC 10 ms
6,816 KB
testcase_25 AC 114 ms
8,212 KB
testcase_26 AC 118 ms
7,808 KB
testcase_27 AC 75 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 16 ms
6,820 KB
testcase_30 AC 38 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 80 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 1 ms
6,820 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 61 ms
6,816 KB
testcase_38 AC 31 ms
6,820 KB
testcase_39 AC 11 ms
6,820 KB
testcase_40 AC 60 ms
6,820 KB
testcase_41 AC 65 ms
7,160 KB
testcase_42 AC 74 ms
7,200 KB
testcase_43 AC 20 ms
6,816 KB
testcase_44 AC 23 ms
6,816 KB
testcase_45 AC 9 ms
6,816 KB
testcase_46 AC 10 ms
6,820 KB
testcase_47 AC 3 ms
6,824 KB
testcase_48 AC 21 ms
6,816 KB
testcase_49 AC 55 ms
6,820 KB
testcase_50 AC 25 ms
6,816 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 36 ms
6,816 KB
testcase_53 AC 47 ms
6,816 KB
testcase_54 AC 28 ms
6,820 KB
testcase_55 AC 41 ms
6,816 KB
testcase_56 AC 12 ms
6,816 KB
testcase_57 AC 1 ms
6,816 KB
testcase_58 AC 208 ms
13,248 KB
testcase_59 AC 103 ms
7,728 KB
testcase_60 AC 132 ms
8,256 KB
testcase_61 AC 123 ms
7,860 KB
testcase_62 AC 138 ms
8,528 KB
testcase_63 AC 129 ms
8,096 KB
testcase_64 AC 149 ms
7,856 KB
testcase_65 AC 117 ms
7,828 KB
testcase_66 AC 207 ms
11,244 KB
testcase_67 AC 116 ms
8,148 KB
testcase_68 AC 27 ms
6,816 KB
testcase_69 AC 2 ms
6,820 KB
testcase_70 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
using ll = long long;
#define REP(i, n) for(ll i=0; i<(n);i++)
#define PER(i, n) for(ll i=n-1; i>=0;i--)

int main() {
  ll n, m;
  cin >> n >> m;

  if (n % 2) {
    cout << 0;
    return 0;
  }

  vector<mint> f(n + 1, 1), rf(n + 1, 1);
  REP(i, n) {
    f[i + 1] = f[i] * (i + 1);
    rf[i + 1] = mint(1) / f[i + 1];
  }

  vector<vector<mint>> dps={{1}};
  REP(i, m) {
    ll l, r;
    cin >> l >> r;
    if((r-l)%2){
    	ll d=(r-l+1)/2;
    	vector<mint> add(d+1);
    	add[0]=1;
    	add[d]=-f[d*2]*rf[d]*rf[d]/(d+1);
    	dps.push_back(add);
    }
  }

  while(dps.size()>1){
  	vector<vector<mint>> ndps;
  	REP(i,dps.size() / 2){
  		ndps.push_back(convolution(dps[i*2],dps[i*2+1]));
  	}
  	if(dps.size()%2){
  		ndps.push_back(dps.back());
  	}
  	swap(dps,ndps);
  }

  mint ans = 0;
  REP(i, dps[0].size()) {
    ans += dps[0][i] * f[n - i * 2] * rf[n / 2 - i] * rf[n / 2 - i] / (n / 2 - i + 1);
  }
  cout << ans.val();

  return 0;
}
0