結果

問題 No.2838 Diagonals
ユーザー みここみここ
提出日時 2024-08-09 22:39:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 4,837 bytes
コンパイル時間 846 ms
コンパイル使用メモリ 78,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-09 22:39:40
合計ジャッジ時間 2,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 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,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 51 ms
6,940 KB
testcase_09 AC 25 ms
6,940 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 8 ms
6,940 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>
using namespace std;

struct UnionFind
{
public:
    UnionFind(int n) : n(n), par(n), sz(n, 1), num_of_components(n)
    {
        for (int i = 0; i < n; i++)
        {
            par[i] = i;
        }
    }

    int find(int i)
    {
        assert(0 <= i && i < n);
        return (i == par[i]) ? i : par[i] = find(par[i]);
    }

    bool same(int i, int j)
    {
        assert(0 <= i && i < n);
        assert(0 <= j && j < n);
        return find(i) == find(j);
    }

    void unite(int i, int j)
    {
        assert(0 <= i && i < n);
        assert(0 <= j && j < n);
        i = find(i), j = find(j);
        if (i == j)
        {
            return;
        }
        if (sz[i] < sz[j])
        {
            std::swap(i, j);
        }
        par[j] = i;
        sz[i] += sz[j];
        num_of_components--;
    }

    int size()
    {
        return n;
    }

    int size(int i)
    {
        assert(0 <= i && i < n);
        return sz[find(i)];
    }

    int count()
    {
        return num_of_components;
    }

    bool is_root(int i)
    {
        assert(0 <= i && i < n);
        return i == find(i);
    }

    int operator[](int i)
    {
        return find(i);
    }

private:
    int n;
    std::vector<int> par;
    std::vector<int> sz;
    int num_of_components;
};

template <int MOD>
struct StaticModint
{
    using mint = StaticModint;

public:
    int val;

    StaticModint() : val(0) {}

    StaticModint(long long v)
    {
        if (std::abs(v) >= mod())
        {
            v %= mod();
        }
        if (v < 0)
        {
            v += mod();
        }
        val = v;
    }

    mint &operator++()
    {
        val++;
        if (val == mod())
        {
            val = 0;
        }
        return *this;
    }

    mint &operator--()
    {
        if (val == 0)
        {
            val = mod();
        }
        val--;
        return *this;
    }

    mint &operator+=(const mint &x)
    {
        val += x.val;
        if (val >= mod())
        {
            val -= mod();
        }
        return *this;
    }

    mint &operator-=(const mint &x)
    {
        val -= x.val;
        if (val < 0)
        {
            val += mod();
        }
        return *this;
    }

    mint &operator*=(const mint &x)
    {
        val = (int)((long long)val * x.val % mod());
        return *this;
    }

    mint &operator/=(const mint &x)
    {
        *this *= x.inv();
        return *this;
    }

    mint operator-()
    {
        return mint() - *this;
    }

    mint pow(long long n) const
    {
        mint x = 1, r = *this;
        while (n)
        {
            if (n & 1)
            {
                x *= r;
            }
            r *= r;
            n >>= 1;
        }
        return x;
    }

    mint inv() const
    {
        return pow(mod() - 2);
    }

    friend mint operator+(const mint &x, const mint &y)
    {
        return mint(x) += y;
    }

    friend mint operator-(const mint &x, const mint &y)
    {
        return mint(x) -= y;
    }

    friend mint operator*(const mint &x, const mint &y)
    {
        return mint(x) *= y;
    }

    friend mint operator/(const mint &x, const mint &y)
    {
        return mint(x) /= y;
    }

    friend bool operator==(const mint &x, const mint &y)
    {
        return x.val == y.val;
    }

    friend bool operator!=(const mint &x, const mint &y)
    {
        return x.val != y.val;
    }

    friend std::ostream &operator<<(std::ostream &os, const mint &x)
    {
        return os << x.val;
    }

    friend std::istream &operator>>(std::istream &is, mint &x)
    {
        long long v;
        is >> v;
        x = mint(v);
        return is;
    }

private:
    static constexpr int mod()
    {
        return MOD;
    }
};

using mint = StaticModint<998244353>;

int main()
{
    int n, m;
    cin >> n >> m;
    string s[505];
    for (int i = 0; i < n; i++)
    {
        cin >> s[i];
    }
    mint ans = 1;
    for (int i = 0; i < n; i++)
    {
        for (int j = 0; j < m; j++)
        {
            if (s[i][j] == '#')
            {
                ans *= 4;
            }
        }
    }
    UnionFind uf(n * m);
    for (int i = 0; i < n; i++)
    {
        for(int j = 0; j < m - 1; j++)
        {
            if(s[i][j] == '#' && s[i][j + 1] == '#')
            {
                uf.unite(i * m + j, i * m + j + 1);
            }
        }
    }
    for(int j = 0; j < m; j++)
    {
        for(int i = 0; i < n - 1; i++)
        {
            if(s[i][j] == '#' && s[i + 1][j] == '#')
            {
                if(uf.same(i * m + j, (i + 1) * m + j))
                {
                    ans /= 2;
                }
                uf.unite(i * m + j, (i + 1) * m + j);
            }
        }
    }
    cout << ans << endl;
}
0