結果

問題 No.1709 Indistinguishable by MEX
ユーザー planesplanes
提出日時 2021-10-16 00:25:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 1,999 bytes
コンパイル時間 1,390 ms
コンパイル使用メモリ 173,908 KB
実行使用メモリ 19,300 KB
最終ジャッジ日時 2024-09-17 19:07:36
合計ジャッジ時間 6,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 182 ms
17,772 KB
testcase_09 AC 148 ms
16,624 KB
testcase_10 AC 137 ms
12,312 KB
testcase_11 AC 113 ms
11,352 KB
testcase_12 AC 110 ms
11,420 KB
testcase_13 AC 168 ms
17,360 KB
testcase_14 AC 158 ms
16,784 KB
testcase_15 AC 159 ms
17,140 KB
testcase_16 AC 205 ms
19,056 KB
testcase_17 AC 214 ms
18,288 KB
testcase_18 AC 242 ms
19,276 KB
testcase_19 AC 244 ms
19,180 KB
testcase_20 AC 230 ms
19,276 KB
testcase_21 AC 225 ms
19,176 KB
testcase_22 AC 227 ms
19,300 KB
testcase_23 AC 228 ms
19,244 KB
testcase_24 AC 221 ms
19,224 KB
testcase_25 AC 216 ms
19,288 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 120 ms
11,608 KB
testcase_28 AC 116 ms
11,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll mod=998244353;
ll mod_pow(ll x,ll n,ll mod) {
ll res=1;
  while(n>0) {
if(n&1) {
res=res*x%mod;
}
   x=x*x%mod;
    n>>=1;
  }
return res;
}



ll INF=2e18;
const ll MAX_N=1<<17;
ll n;
vector<pair<ll,ll>> dat;

void init(ll n_) {
    n=1;
    while (n<n_) n*=2;
dat=vector<pair<ll,ll>> (2*n-1);

}

    void update(ll k,ll i) {
        k+=n-1;
        dat[k]={k-n+1,i};

        while(k>0) {
            k=(k-1)/2;
            dat[k].first=dat[2*k+1].first;
            if(dat[2*k+2].second==0) dat[k].second=dat[2*k+1].second;
           else if(dat[2*k+1].second==dat[2*k+2].first) dat[k].second=dat[2*k+2].second;
           else dat[k].second=dat[2*k+1].second;
            }
        }
    



int main() {
    ll N;cin>>N;
    init(N);
    for(ll i=0;i<n;i++) {
        update(i,0);
    }
    
    vector<ll> P(N);  
  vector<ll> ind(N);
    for(ll i=0;i<N;i++) {
        cin>>P[i];
        ind[P[i]]=i;
    }
vector<ll> up(N+1);
up[0]=1;
for(ll i=1;i<=N;i++) {
    up[i]=up[i-1]*i;
    up[i]%=mod;
}

vector<ll> memo(N+1);
memo[0]=1;
for(ll i=1;i<=N;i++){
    memo[i]=mod_pow(i,mod-2,mod);
}
vector<ll> down(N+1);
down[0]=1;
for(ll i=1;i<=N;i++) {
    down[i]=down[i-1]*memo[i];
    down[i]%=mod;
}


    ll s=ind[0];
    ll g=ind[0];

    ll ans=1;
ll now=1;
update(0,1);
    while(now<N) {
        ll next;
        if(ind[now]<s) {
            for(ll i=ind[now];i<s;i++) {
                update(P[i],P[i]+1);
            }
            
            s=ind[now];
             next=dat[0].second;
        }
       else {
           for(ll i=g+1;i<=ind[now];i++) {
               update(P[i],P[i]+1);
           }
           g=ind[now];
            next=dat[0].second;
       }
       
ll k=up[g-s-now]%mod*down[g-s-(next-1)]%mod;
ans*=k%mod;
ans%=mod;
    now=next;
    }

    cout<<ans%mod<<endl;/**/

}

0