結果

問題 No.2291 Union Find Estimate
ユーザー Nzt3Nzt3
提出日時 2023-05-12 17:53:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,458 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 204,140 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 09:17:58
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 21 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 4 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;
const 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[a]=b;
  }
}
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);
  for(int i=0;i<H;i++){
    string S;
    cin>>S;
    array<int,26>l;
    for(int j=0;j<26;j++){
      l[j]=-1;
    }
    for(int j=0;j<W;j++){
      if(S[j]>='0'&&S[j]<='9'){
        int rj=getroot(j);
        if(SA[rj]!=-1&&SA[rj]!=S[j]-'0'){
          ans=0;
        }
        if(SA[rj]==-1){
          ans=ans*inv10%mod;
        }
        SA[rj]=S[j]-'0';
      }else if(S[j]!='?'){
        if(l[S[j]-'a']!=-1){
          int rl=getroot(l[S[j]-'a']),rj=getroot(j);
          if(rl!=rj){
            if(SA[rl]!=-1&&SA[rj]!=-1&&SA[rl]!=SA[rj]){
              ans=0;
            }else if(SA[rl]==-1){
              SA[rl]=SA[rj];
            }else{
              SA[rj]=SA[rl];
            }
            ans=ans*inv10%mod;
          }
          unite(rl,rj);
        }
        l[S[j]-'a']=j;
      }
    }
    cout<<ans<<'\n';
  }
}
0