結果

問題 No.2838 Diagonals
ユーザー LisderyLisdery
提出日時 2024-08-11 14:05:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 170,844 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-11 14:05:11
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
char ch;
int read(){
    int x=0,f=0;ch=getchar();
    while(!isdigit(ch))f=((ch=='-')?1:0),ch=getchar();
    while(isdigit(ch))x=(x<<3)+(x<<1)+ch-'0',ch=getchar();
    return (f)?-x:x;
}
int ot[40],otp;
void write(int x){
    if(!x)return putchar('0'),void();
    while(x)ot[++otp]=x%10,x/=10;
    while(otp)putchar(ot[otp--]+'0');
    return ;
}
const int maxn=5e2+2;
const int mod=998244353;
int n,m;
char s[maxn][maxn];
int ans;
int poi(int i,int j){return (i-1)*m+j;}
struct UFS{
    int fa[maxn*maxn],siz[maxn*maxn];
    void init(int mx){for(int i=1;i<=mx;i++)fa[i]=i,siz[i]=1;}
    int find(int x){return (fa[x]==x)?x:(fa[x]=find(fa[x]));}
    void merge(int u,int v){
        u=find(u),v=find(v);
        if(siz[u]>siz[v])swap(u,v);
        if(!u||u==v)return ;
        fa[u]=v,siz[v]+=siz[u];
        return ;
    }
}ufs;
void upd(int &x,int v){return ((x+=v)>=mod)?(x-=mod):x,void();}
int main(){
    // freopen("A.in","r",stdin);
    // freopen("A.out","w",stdout);
    n=read(),m=read();
    ufs.init(n*m);
    for(int i=1;i<=n;i++)scanf("%s",s[i]+1);
    ans=1;
    for(int i=1;i<=n;i++){
        for(int j=1,f1,f2;j<=m;j++){
            if(s[i][j]!='#')continue;
            f1=((i>1&&s[i-1][j]=='#')?ufs.find(poi(i-1,j)):0);
            f2=((j>1&&s[i][j-1]=='#')?ufs.find(poi(i,j-1)):0);
            if(!f1||!f2||f1!=f2)ans=4ll*ans%mod;
            else ans=2ll*ans%mod;
            ufs.merge(f1,poi(i,j));
            ufs.merge(f2,poi(i,j));
        }
    }
    write(ans);putchar('\n');
    return 0;
}
0