結果

問題 No.2291 Union Find Estimate
ユーザー Nzt3Nzt3
提出日時 2023-05-13 17:42:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,708 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 205,272 KB
実行使用メモリ 813,184 KB
最終ジャッジ日時 2024-05-06 22:56:38
合計ジャッジ時間 4,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 21 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 MLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
constexpr int mod=998244353;
constexpr int INPUT_MAX=200005;
int rt[INPUT_MAX];
int rk[INPUT_MAX];
int getroot(int n){
  if(rt[n]==-1)return n;
  return rt[n]=getroot(rt[n]);
}
void unite(int a,int b){
  a=getroot(a),b=getroot(b);
  if(rk[a]<rk[b])swap(a,b);
  if(rk[a]==rk[b]){
    rt[a]=b;
    ++rk[b];
  }else{
    rt[b]=a;
  }
}
long long modpow(long long a,int n){
  long long ret=1,t=a;
  for(int i=0;i<30;i++){
    if(n>>i&1)ret=ret*t%mod;
    t=t*t%mod;
  }
  return ret;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  fill(rt,rt+INPUT_MAX,-1);
  int W,H;
  cin>>W>>H;
  long long ans=modpow(10,W),inv10=modpow(10,mod-2);
  vector<int>SA(W,-1);
  while(H--){
    string S;
    cin>>S;
    vector<int>D(26,-1);
    for(int i=0;i<W;i++){
      if(S[i]>='a'&&S[i]<='z'){
        if(D[S[i]-'a']!=-1){
          int ri=getroot(i),rl=getroot(D[S[i]-'a']);
          if(SA[ri]!=-1&&SA[rl]!=-1&&SA[ri]!=SA[rl]){
            ans=0;
          }
          if(SA[ri]==-1&&SA[rl]!=-1){
            ans=ans*inv10%mod;
            SA[ri]=SA[rl];
            unite(ri,rl);
          }else if(SA[ri]!=-1&&SA[rl]==-1){
            ans=ans*inv10%mod;
            SA[rl]=SA[ri];
            unite(ri,rl);
          }else if(SA[ri]==-1&&SA[rl]==-1){
            ans=ans*inv10%mod;
            unite(ri,rl);
          }else{
            unite(ri,rl);
          }
        }
        D[S[i]-'a']=i;
      }else if(S[i]>='0'&&S[i]<='9'){
        int ri=getroot(i);
        if(SA[ri]!=-1&&SA[ri]!=S[i]-'0'){
          ans=0;
        }else if(SA[ri]==-1){
          SA[ri]=S[i]-'0';
          ans=ans*inv10%mod;
        }
      }
    }
    cout<<ans<<'\n';
  }
}
0