結果

問題 No.762 PDCAパス
ユーザー けーむけーむ
提出日時 2020-03-11 10:56:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,517 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 176,452 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-04-27 19:10:05
合計ジャッジ時間 3,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 18 ms
6,944 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 30 ms
9,472 KB
testcase_25 AC 28 ms
9,472 KB
testcase_26 AC 15 ms
6,944 KB
testcase_27 AC 15 ms
6,940 KB
testcase_28 AC 36 ms
9,984 KB
testcase_29 AC 36 ms
9,832 KB
testcase_30 AC 34 ms
8,960 KB
testcase_31 AC 34 ms
8,832 KB
testcase_32 AC 35 ms
9,088 KB
testcase_33 AC 31 ms
7,936 KB
testcase_34 AC 32 ms
7,936 KB
testcase_35 AC 32 ms
7,936 KB
testcase_36 AC 25 ms
6,944 KB
testcase_37 AC 25 ms
6,944 KB
testcase_38 AC 24 ms
6,940 KB
testcase_39 AC 24 ms
6,940 KB
testcase_40 AC 24 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++)
#define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++)
#define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--)
#define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--)
#define all(x) (x).begin(), (x).end()
#define sz(x) ((ll)(x).size())
#define len(x) ((ll)(x).length())

ll n, m;
string s;
vector<vector<ll>> g;
vector<ll> dp;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    // ifstream in("input.txt");
    // cin.rdbuf(in.rdbuf());
    const ll mod = 1e9 + 7;
    cin >> n >> m;
    cin >> s;
    g.resize(n);
    rep(i, m) {
        ll a, b;
        cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    dp.resize(n, 0);
    rep(i, n) {
        if (s[i] == 'A') dp[i] = 1;
    }
    rep(i, n) {
        if (s[i] != 'C') continue;
        for(auto u : g[i]) {
            if (s[u] != 'A') continue;
            dp[i] = (dp[i] + dp[u]) % mod;
        }
    }
    rep(i, n) {
        if (s[i] != 'D') continue;
        for(auto u : g[i]) {
            if (s[u] != 'C') continue;
            dp[i] = (dp[i] + dp[u]) % mod;
        }
    }
    ll ans = 0;
    rep(i, n) {
        if (s[i] != 'P') continue;
        for(auto u : g[i]) {
            if (s[u] != 'D') continue;
            dp[i] = (dp[i] + dp[u]) % mod;
        }
        ans = (ans + dp[i]) % mod;
    }
    cout << ans << endl;
    return 0;
}
0