結果

問題 No.762 PDCAパス
ユーザー t98slidert98slider
提出日時 2023-01-20 09:29:22
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 2,844 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 171,988 KB
実行使用メモリ 9,424 KB
最終ジャッジ日時 2023-09-05 04:00:09
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,384 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,384 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 16 ms
4,384 KB
testcase_23 AC 16 ms
4,380 KB
testcase_24 AC 40 ms
9,404 KB
testcase_25 AC 40 ms
9,424 KB
testcase_26 AC 17 ms
4,384 KB
testcase_27 AC 17 ms
4,432 KB
testcase_28 AC 49 ms
9,088 KB
testcase_29 AC 46 ms
9,184 KB
testcase_30 AC 41 ms
7,980 KB
testcase_31 AC 41 ms
7,988 KB
testcase_32 AC 43 ms
7,940 KB
testcase_33 AC 36 ms
6,756 KB
testcase_34 AC 37 ms
6,764 KB
testcase_35 AC 35 ms
6,816 KB
testcase_36 AC 28 ms
5,244 KB
testcase_37 AC 28 ms
5,176 KB
testcase_38 AC 28 ms
5,232 KB
testcase_39 AC 28 ms
5,172 KB
testcase_40 AC 28 ms
5,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<const int MOD> struct prime_modint {
    using mint = prime_modint;
    unsigned int v;
    prime_modint() : v(0) {}
    prime_modint(int a) { a %= MOD; if(a < 0)a += MOD; v = a; }
    prime_modint(long long a) { a %= MOD; if(a < 0)a += MOD; v = a; }
    static constexpr int mod() { return MOD; }
    mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
    mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
    mint operator++(int) { mint result = *this; ++*this; return result; }
    mint operator--(int) { mint result = *this; --*this; return result; }
    mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
    mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
    mint& operator*=(const mint& rhs) {
        v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }
    mint pow(long long n) const {
        assert(0 <= n);
        mint r = 1, x = *this;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const { assert(v); return pow(MOD - 2); }
    friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
    friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
    friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
    friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
    friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
    friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
    friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
using mint = prime_modint<1000000007>;
//using mint2 = prime_modint<998244353>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, u, v;
    string s, t = "PDCA";
    cin >> n >> m >> s;
    vector<vector<int>> g(n);
    for(int i = 0; i < m; i++){
        cin >> u >> v;
        g[--u].push_back(--v);
        g[v].push_back(u);
    }
    vector<mint> dp(n);
    for(int i = 0; i < n; i++) if(s[i] == t[0]) dp[i]++;
    for(int i = 0; i < 3; i++){
        vector<mint> ndp(n);
        for(int v = 0; v < n; v++){
            if(s[v] != t[i])continue;
            for(auto &&u:g[v]){
                if(s[u] != t[i + 1]) continue;
                ndp[u] += dp[v];
            }
        }
        swap(dp, ndp);
    }
    cout << accumulate(dp.begin(), dp.end(), mint(0)) << endl;
}
0