結果

問題 No.2512 Mountain Sequences
ユーザー maksimmaksim
提出日時 2023-10-20 22:53:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 807 ms / 3,000 ms
コード長 1,536 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 175,384 KB
実行使用メモリ 19,220 KB
最終ジャッジ日時 2024-09-20 21:03:38
合計ジャッジ時間 19,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
9,984 KB
testcase_01 AC 148 ms
9,856 KB
testcase_02 AC 144 ms
9,856 KB
testcase_03 AC 142 ms
9,728 KB
testcase_04 AC 140 ms
9,984 KB
testcase_05 AC 142 ms
9,984 KB
testcase_06 AC 143 ms
9,728 KB
testcase_07 AC 142 ms
9,984 KB
testcase_08 AC 142 ms
9,984 KB
testcase_09 AC 141 ms
9,984 KB
testcase_10 AC 785 ms
18,936 KB
testcase_11 AC 793 ms
18,960 KB
testcase_12 AC 788 ms
19,100 KB
testcase_13 AC 791 ms
18,864 KB
testcase_14 AC 792 ms
19,016 KB
testcase_15 AC 791 ms
19,220 KB
testcase_16 AC 804 ms
18,752 KB
testcase_17 AC 797 ms
19,164 KB
testcase_18 AC 807 ms
18,916 KB
testcase_19 AC 793 ms
18,772 KB
testcase_20 AC 554 ms
18,008 KB
testcase_21 AC 554 ms
18,284 KB
testcase_22 AC 550 ms
18,244 KB
testcase_23 AC 563 ms
18,120 KB
testcase_24 AC 561 ms
17,996 KB
testcase_25 AC 453 ms
17,472 KB
testcase_26 AC 771 ms
17,600 KB
testcase_27 AC 581 ms
17,476 KB
testcase_28 AC 615 ms
17,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int32_t main()':
main.cpp:49:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   49 |         auto [n,m]=que[i];
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
const int p=998244353;
int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*u)%p;} else {int u=po(a,b-1);return (a*u)%p;}}
int inv(int x) {return po(x,p-2);}
const int maxn=4e5+5;
int fact[maxn];int invf[maxn];
int c(int n,int k)
{
    if(k>n) return 0;
    int ans=fact[n];ans*=invf[k];ans%=p;ans*=invf[n-k];ans%=p;return ans;
}
const int sq=700;
vector<pair<int,int> > h[maxn/sq];
int res[maxn];
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    fact[0]=1;for(int i=1;i<maxn;++i) {fact[i]=(fact[i-1]*i)%p;}
    for(int i=0;i<maxn;++i) {invf[i]=inv(fact[i]);}
    vector<pair<int,int> > que;
    int t;cin>>t;
    for(int cyc=0;cyc<t;++cyc)
    {
        int n,m;cin>>n>>m;
        h[(n+sq-1)/sq].push_back({m,cyc});
        que.push_back({n,m});
    }
    for(int i=1;i<=200005/sq+1;++i)
    {
        sort(h[i].begin(),h[i].end());
        int cur=0;int x=0;
        int r=0;
        while(cur!=h[i].size())
        {
            while(x!=h[i][cur].first)
            {
                r+=c(2*x,i*sq-1);r%=p;
                ++x;
            }
            res[h[i][cur].second]=r;
            ++cur;
        }
    }
    for(int i=0;i<que.size();++i)
    {
        auto [n,m]=que[i];
        int n1=((n+sq-1)/sq)*sq;
        int r=res[i];
        while(n1>n)
        {
            r=(-2*r+(c(2*m,n1)));r%=p;
            --n1;
        }
        cout<<(r%p+p)%p<<'\n';
    }
    return 0;
}
0