結果

問題 No.2605 Pickup Parentheses
ユーザー ぷらぷら
提出日時 2024-01-12 21:54:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 987 ms / 2,000 ms
コード長 2,993 bytes
コンパイル時間 3,833 ms
コンパイル使用メモリ 216,160 KB
実行使用メモリ 25,712 KB
最終ジャッジ日時 2024-09-30 06:22:24
合計ジャッジ時間 18,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,024 KB
testcase_01 AC 4 ms
8,280 KB
testcase_02 AC 6 ms
8,156 KB
testcase_03 AC 8 ms
8,544 KB
testcase_04 AC 8 ms
8,416 KB
testcase_05 AC 11 ms
8,412 KB
testcase_06 AC 14 ms
8,672 KB
testcase_07 AC 12 ms
8,420 KB
testcase_08 AC 14 ms
8,800 KB
testcase_09 AC 6 ms
8,288 KB
testcase_10 AC 11 ms
8,668 KB
testcase_11 AC 10 ms
8,416 KB
testcase_12 AC 7 ms
8,284 KB
testcase_13 AC 5 ms
8,028 KB
testcase_14 AC 8 ms
8,288 KB
testcase_15 AC 8 ms
8,284 KB
testcase_16 AC 6 ms
8,288 KB
testcase_17 AC 8 ms
8,288 KB
testcase_18 AC 619 ms
18,552 KB
testcase_19 AC 268 ms
13,552 KB
testcase_20 AC 47 ms
9,184 KB
testcase_21 AC 30 ms
8,928 KB
testcase_22 AC 9 ms
8,544 KB
testcase_23 AC 479 ms
18,260 KB
testcase_24 AC 44 ms
9,164 KB
testcase_25 AC 668 ms
21,412 KB
testcase_26 AC 698 ms
21,788 KB
testcase_27 AC 416 ms
17,744 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 58 ms
9,440 KB
testcase_30 AC 143 ms
11,484 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 1 ms
6,820 KB
testcase_33 AC 328 ms
15,280 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 1 ms
6,820 KB
testcase_36 AC 1 ms
6,820 KB
testcase_37 AC 273 ms
13,840 KB
testcase_38 AC 107 ms
11,512 KB
testcase_39 AC 36 ms
8,984 KB
testcase_40 AC 281 ms
15,376 KB
testcase_41 AC 233 ms
15,132 KB
testcase_42 AC 374 ms
16,280 KB
testcase_43 AC 66 ms
10,320 KB
testcase_44 AC 60 ms
10,356 KB
testcase_45 AC 6 ms
8,156 KB
testcase_46 AC 23 ms
9,212 KB
testcase_47 AC 6 ms
8,032 KB
testcase_48 AC 6 ms
8,284 KB
testcase_49 AC 209 ms
13,408 KB
testcase_50 AC 73 ms
9,816 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 120 ms
11,344 KB
testcase_53 AC 171 ms
12,360 KB
testcase_54 AC 87 ms
10,656 KB
testcase_55 AC 141 ms
11,620 KB
testcase_56 AC 32 ms
9,180 KB
testcase_57 AC 2 ms
6,816 KB
testcase_58 AC 987 ms
24,660 KB
testcase_59 AC 528 ms
16,888 KB
testcase_60 AC 662 ms
20,236 KB
testcase_61 AC 602 ms
20,832 KB
testcase_62 AC 693 ms
20,280 KB
testcase_63 AC 649 ms
21,836 KB
testcase_64 AC 720 ms
21,028 KB
testcase_65 AC 558 ms
19,076 KB
testcase_66 AC 976 ms
25,712 KB
testcase_67 AC 650 ms
20,984 KB
testcase_68 AC 5 ms
8,156 KB
testcase_69 AC 2 ms
6,820 KB
testcase_70 AC 5 ms
8,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string.h>
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <ctime>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

constexpr int mod = 998244353;

long long fac[200005], finv[200005], inv[200005];

void COMinit() {
    fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1;
    for (int i = 2; i < 200005; i++) {
        fac[i] = fac[i - 1] * i % mod;
        inv[i] = mod - inv[mod % i] * (mod / i) % mod;
        finv[i] = finv[i - 1] * inv[i] % mod;
    }
}

long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}

long long choose(int n,int k) {
    if(n < 0 || k < 0) return 0;
    if(n == 0) return 1;
    return COM(n+k-1,k-1);
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M;
    cin >> N >> M;
    if(N%2) {
        cout << 0 << "\n";
        return 0;
    }
    COMinit();
    vector<pair<vector<int>,vector<int>>>tmp;
    for(int i = 0; i < M; i++) {
        int L,R;
        cin >> L >> R;
        L--;
        if((R-L)%2) continue;
        vector<int>a(R-L+1),b(R-L+1);
        a[0] = 1;
        b[R-L] = (COM(R-L,(R-L)/2)+mod-COM(R-L,(R-L)/2+1))%mod;
        tmp.push_back({a,b});
    }
    while(tmp.size() > 1) {
        vector<pair<vector<int>,vector<int>>>nxt;
        for(int i = 0; i < tmp.size(); i += 2) {
            if(i+1 == tmp.size()) {
                nxt.push_back(tmp[i]);
            }
            else {
                auto a1 = convolution(tmp[i].first,tmp[i+1].first);
                auto a2 = convolution(tmp[i].second,tmp[i+1].second);
                auto b1 = convolution(tmp[i].first,tmp[i+1].second);
                auto b2 = convolution(tmp[i].second,tmp[i+1].first);
                for(int i = 0; i < a1.size(); i++) {
                    a1[i] += a2[i];
                    if(a1[i] >= mod) a1[i] -= mod;
                    b1[i] += b2[i];
                    if(b1[i] >= mod) b1[i] -= mod;
                }
                nxt.push_back({a1,b1});
            }
        }
        tmp = nxt;
    }
    if(tmp.empty()) {
        cout << (COM(N,N/2)+mod-COM(N,N/2+1))%mod << "\n";
        return 0;
    }
    int ans = 0;
    for(int i = 0; i < tmp[0].first.size(); i += 2) {
        ans += (COM(N-i,(N-i)/2)+mod-COM(N-i,(N-i)/2+1))%mod*tmp[0].first[i]%mod;
        if(ans >= mod) ans -= mod;
        ans += mod-(COM(N-i,(N-i)/2)+mod-COM(N-i,(N-i)/2+1))%mod*tmp[0].second[i]%mod;
        if(ans >= mod) ans -= mod;
    }
    cout << ans << "\n";
}
0