結果

問題 No.2345 max(l,r)
ユーザー maksimmaksim
提出日時 2023-06-09 21:49:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 1,730 bytes
コンパイル時間 1,518 ms
コンパイル使用メモリ 176,804 KB
実行使用メモリ 18,568 KB
最終ジャッジ日時 2025-01-02 02:48:24
合計ジャッジ時間 14,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
9,800 KB
testcase_01 AC 153 ms
9,692 KB
testcase_02 AC 149 ms
9,700 KB
testcase_03 AC 148 ms
9,800 KB
testcase_04 AC 148 ms
9,696 KB
testcase_05 AC 148 ms
9,824 KB
testcase_06 AC 148 ms
9,796 KB
testcase_07 AC 148 ms
9,796 KB
testcase_08 AC 148 ms
9,804 KB
testcase_09 AC 148 ms
9,696 KB
testcase_10 AC 148 ms
9,692 KB
testcase_11 AC 146 ms
9,928 KB
testcase_12 AC 147 ms
9,692 KB
testcase_13 AC 145 ms
9,824 KB
testcase_14 AC 149 ms
9,800 KB
testcase_15 AC 148 ms
9,928 KB
testcase_16 AC 147 ms
9,700 KB
testcase_17 AC 148 ms
9,692 KB
testcase_18 AC 144 ms
9,796 KB
testcase_19 AC 163 ms
9,692 KB
testcase_20 AC 148 ms
9,696 KB
testcase_21 AC 149 ms
9,696 KB
testcase_22 AC 189 ms
18,240 KB
testcase_23 AC 197 ms
18,568 KB
testcase_24 AC 145 ms
12,104 KB
testcase_25 AC 147 ms
9,924 KB
testcase_26 AC 149 ms
10,180 KB
testcase_27 AC 151 ms
10,056 KB
testcase_28 AC 138 ms
10,568 KB
testcase_29 AC 140 ms
10,724 KB
testcase_30 AC 135 ms
10,084 KB
testcase_31 AC 149 ms
11,080 KB
testcase_32 AC 134 ms
10,340 KB
testcase_33 AC 137 ms
10,696 KB
testcase_34 AC 125 ms
9,800 KB
testcase_35 AC 133 ms
10,052 KB
testcase_36 AC 129 ms
10,184 KB
testcase_37 AC 134 ms
10,332 KB
testcase_38 AC 148 ms
11,488 KB
testcase_39 AC 169 ms
12,036 KB
testcase_40 AC 160 ms
11,492 KB
testcase_41 AC 153 ms
11,364 KB
testcase_42 AC 154 ms
11,364 KB
testcase_43 AC 156 ms
11,592 KB
testcase_44 AC 168 ms
11,976 KB
testcase_45 AC 191 ms
14,660 KB
testcase_46 AC 179 ms
13,396 KB
testcase_47 AC 159 ms
11,340 KB
testcase_48 AC 136 ms
9,952 KB
testcase_49 AC 135 ms
9,928 KB
testcase_50 AC 137 ms
9,800 KB
testcase_51 AC 136 ms
9,800 KB
testcase_52 AC 134 ms
9,952 KB
testcase_53 AC 135 ms
9,824 KB
testcase_54 AC 137 ms
9,800 KB
testcase_55 AC 138 ms
9,928 KB
testcase_56 AC 135 ms
9,820 KB
testcase_57 AC 139 ms
9,800 KB
testcase_58 AC 149 ms
9,800 KB
testcase_59 AC 149 ms
9,800 KB
testcase_60 AC 149 ms
9,928 KB
testcase_61 AC 152 ms
9,824 KB
testcase_62 AC 148 ms
9,928 KB
testcase_63 AC 150 ms
9,824 KB
testcase_64 AC 150 ms
9,828 KB
testcase_65 AC 149 ms
9,956 KB
testcase_66 AC 151 ms
9,824 KB
testcase_67 AC 165 ms
9,952 KB
testcase_68 AC 203 ms
9,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int32_t main()’:
main.cpp:24:43: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
   24 |         vector<pair<int,int> > v;for(auto [key,val]:u) v.push_back({key,val});
      |                                           ^
main.cpp:28:18: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
   28 |         for(auto [ma,c]:v)
      |                  ^

ソースコード

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 c1(int n,int k)
{
    if(n<k || n<0 || k<0) return 0;
    int res=fact[n];res*=invf[k];res%=p;res*=invf[n-k];res%=p;return res;
}
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]);
    int t;cin>>t;
    while(t--)
    {
        int n,m;cin>>n>>m;int a[n];for(int i=0;i<n;++i) cin>>a[i];
        map<int,int> u;for(int i=0;i<n;++i) u[a[i]]++;
        vector<pair<int,int> > v;for(auto [key,val]:u) v.push_back({key,val});
        sort(v.begin(),v.end());reverse(v.begin(),v.end());
        int l=n,r=n;
        int res=1;int tot=0;int rem=v.size();
        for(auto [ma,c]:v)
        {
            --rem;
            if(ma==r-c && 2*(r-c)+c>=n)
            {
                ++tot;
                if(l==r && rem) {res*=2;res%=p;}
                r-=c;
            }
            else if(ma==l-c && 2*(l-c)+c>=n)
            {
                ++tot;
                l-=c;
            }
            else
            {
                int h=(l+r-c);
                if(h%2==1) {res*=0;res%=p;}
                if(h!=2*ma) {res*=0;res%=p;}
                tot+=2;
                int o=l-h/2;
                res*=c1(c,o);res%=p;
                l=h/2;r=h/2;
            }
        }
        res*=c1(m,tot);res%=p;
        cout<<(res%p+p)%p<<'\n';
    }
    return 0;
}
0