結果

問題 No.2605 Pickup Parentheses
ユーザー GoldIngotGoldIngot
提出日時 2024-01-12 22:52:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,489 bytes
コンパイル時間 4,322 ms
コンパイル使用メモリ 274,992 KB
実行使用メモリ 8,992 KB
最終ジャッジ日時 2024-09-27 23:40:00
合計ジャッジ時間 12,703 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 573 ms
7,920 KB
testcase_19 AC 237 ms
6,944 KB
testcase_20 AC 20 ms
6,944 KB
testcase_21 AC 16 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 490 ms
7,940 KB
testcase_24 AC 25 ms
6,944 KB
testcase_25 AC 648 ms
8,816 KB
testcase_26 AC 427 ms
8,992 KB
testcase_27 AC 498 ms
7,908 KB
testcase_28 AC 5 ms
6,944 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 WA -
testcase_34 AC 5 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 4 ms
6,940 KB
testcase_37 WA -
testcase_38 AC 16 ms
6,940 KB
testcase_39 AC 7 ms
6,940 KB
testcase_40 AC 75 ms
7,508 KB
testcase_41 AC 39 ms
8,252 KB
testcase_42 AC 162 ms
8,000 KB
testcase_43 AC 14 ms
6,940 KB
testcase_44 AC 10 ms
6,940 KB
testcase_45 AC 4 ms
6,940 KB
testcase_46 AC 4 ms
6,940 KB
testcase_47 AC 1 ms
6,944 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 2 ms
6,944 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 2 ms
6,940 KB
testcase_58 AC 29 ms
7,424 KB
testcase_59 AC 1,135 ms
8,572 KB
testcase_60 AC 803 ms
8,728 KB
testcase_61 AC 174 ms
8,276 KB
testcase_62 AC 84 ms
8,172 KB
testcase_63 AC 98 ms
8,296 KB
testcase_64 AC 38 ms
8,384 KB
testcase_65 AC 826 ms
8,448 KB
testcase_66 AC 29 ms
8,448 KB
testcase_67 AC 210 ms
8,276 KB
testcase_68 AC 7 ms
6,940 KB
testcase_69 AC 2 ms
6,944 KB
testcase_70 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define rep2(i,m,n) for(int (i)=(m);(i)<(n);(i)++)
#define rep2ll(i,m,n) for(ll (i)=(m);(i)<(n);(i)++)
#define ALL(obj) (obj).begin(), (obj).end()
#define rALL(obj) (obj).rbegin(), (obj).rend()
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using mint = atcoder::modint998244353;
using VL = vector<ll>;
using VVL = vector<VL>;
using VVVL = vector<VVL>;
using VM = vector<mint>;
using VVM = vector<VM>;
using VVVM = vector<VVM>;
using VD = vector<double>;
using VVD = vector<VD>;
using VVVD = vector<VVD>;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

template< typename T >
struct Combination {
  vector< T > _fact, _rfact, _inv;

  Combination(int sz) : _fact(sz + 1), _rfact(sz + 1), _inv(sz + 1) {
    _fact[0] = _rfact[sz] = _inv[0] = 1;
    for(int i = 1; i <= sz; i++) _fact[i] = _fact[i - 1] * i;
    _rfact[sz] /= _fact[sz];
    for(int i = sz - 1; i >= 0; i--) _rfact[i] = _rfact[i + 1] * (i + 1);
    for(int i = 1; i <= sz; i++) _inv[i] = _rfact[i] * _fact[i - 1];
  }

  inline T fact(int k) const { return _fact[k]; }

  inline T rfact(int k) const { return _rfact[k]; }

  inline T inv(int k) const { return _inv[k]; }

  T P(int n, int r) const {
    if(r < 0 || n < r) return 0;
    return fact(n) * rfact(n - r);
  }

  T C(int p, int q) const {
    if(q < 0 || p < q) return 0;
    return fact(p) * rfact(q) * rfact(p - q);
  }

  T H(int n, int r) const {
    if(n < 0 || r < 0) return (0);
    return r == 0 ? 1 : C(n + r - 1, r);
  }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n, m; cin>>n>>m;
    VL cnt(n/2+1, 0);
    bool zero = n%2;
    rep(i,m){
        ll l, r; cin>>l>>r; l--;
        zero |= (r-l)%2;
        cnt[(r-l)/2]++;
    }
    if(zero){
        cout<<0;
        return 0;
    }
    n /= 2;
    vector<P> arr;
    rep(i,n+1) if(cnt[i]) arr.push_back({i, cnt[i]});

    Combination<mint> c(2*n+1);
    VM cata(n+1, 0);
    rep(i,n+1) cata[i] = c.fact(2*i) * c.rfact(i+1) * c.rfact(i);

    VM dp(1, 1);
    for(auto [x, y]: arr){
        VM dp_(x*y+1, 0);
        rep(j, y+1) dp_[x*j] = cata[x].pow(j) * c.C(y, j) * (1-j%2*2);
        dp = atcoder::convolution(dp, dp_);
    }

    mint ans = 0;
    rep(i,dp.size()) ans += dp[i] * cata[n-i];
    cout<<ans.val();


    return 0;
}
0