結果
問題 | No.2291 Union Find Estimate |
ユーザー | Nzt3 |
提出日時 | 2023-05-13 17:46:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,562 bytes |
コンパイル時間 | 2,246 ms |
コンパイル使用メモリ | 204,572 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-06 22:59:34 |
合計ジャッジ時間 | 3,667 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 21 ms
6,944 KB |
testcase_03 | AC | 5 ms
6,944 KB |
testcase_04 | AC | 5 ms
6,944 KB |
testcase_05 | AC | 5 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#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(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'; } }