結果

問題 No.2291 Union Find Estimate
ユーザー Nzt3Nzt3
提出日時 2023-05-13 17:51:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 1,622 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 203,792 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 23:02:11
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
constexpr int mod=998244353;
constexpr int INPUT_MAX=200005;
int rt[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(a!=b){
    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);
  array<int,26>D;
  while(H--){
    string S;
    cin>>S;
    for(int i=0;i<26;i++){
      D[i]=-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(ri!=rl){
            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];
            }else if(SA[ri]!=-1&&SA[rl]==-1){
              ans=ans*inv10%mod;
              SA[rl]=SA[ri];
            }else if(SA[ri]==-1&&SA[rl]==-1){
              ans=ans*inv10%mod;
            }
            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