結果

問題 No.762 PDCAパス
ユーザー TiramisterTiramister
提出日時 2018-12-20 19:34:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 3,086 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 110,096 KB
実行使用メモリ 12,384 KB
最終ジャッジ日時 2023-10-26 01:10:57
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 1 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 44 ms
4,644 KB
testcase_23 AC 43 ms
4,644 KB
testcase_24 AC 69 ms
12,384 KB
testcase_25 AC 68 ms
12,384 KB
testcase_26 AC 45 ms
4,872 KB
testcase_27 AC 45 ms
4,872 KB
testcase_28 AC 89 ms
12,040 KB
testcase_29 AC 85 ms
12,040 KB
testcase_30 AC 77 ms
10,252 KB
testcase_31 AC 78 ms
10,248 KB
testcase_32 AC 78 ms
10,256 KB
testcase_33 AC 74 ms
8,580 KB
testcase_34 AC 74 ms
8,580 KB
testcase_35 AC 74 ms
8,580 KB
testcase_36 AC 63 ms
6,036 KB
testcase_37 AC 63 ms
6,032 KB
testcase_38 AC 64 ms
6,032 KB
testcase_39 AC 64 ms
6,036 KB
testcase_40 AC 63 ms
6,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* ---------- STL Libraries ---------- */

// IO library
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <ios>
#include <iostream>

// algorithm library
#include <algorithm>
#include <cmath>
#include <numeric>
#include <random>

// container library
#include <array>
#include <bitset>
#include <deque>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>

/* ---------- Namespace ---------- */

using namespace std;

/* ---------- Type Abbreviation ---------- */

using ll = long long;

template <typename T>
using PQ = priority_queue<T>;
template <typename T>
using GPQ = priority_queue<T, vector<T>, greater<T>>;

#define mp make_pair
#define mt make_tuple

/* ---------- conversion ---------- */

#define INT(c) static_cast<int>(c)
#define CHAR(n) static_cast<char>(n)
#define LL(n) static_cast<ll>(n)
#define DOUBLE(n) static_cast<double>(n)

/* ---------- container ---------- */

#define gsort(b, e) sort(b, e, greater<decltype(*b)>())

/* ----------- debug ---------- */

template <class T>
ostream& operator<<(ostream& os, vector<T> v) {
    os << "[";
    for (auto vv : v)
        os << vv << ",";
    return os << "]";
}

template <class T>
ostream& operator<<(ostream& os, set<T> v) {
    os << "[";
    for (auto vv : v)
        os << vv << ",";
    return os << "]";
}

template <class L, class R>
ostream& operator<<(ostream& os, pair<L, R> p) {
    return os << "(" << p.first << "," << p.second << ")";
}

/* ---------- Constants ---------- */

const ll MOD = 1e9 + 7;
// const int INF = 1 << 25;
// const ll INF = 1LL << 50;
// const double PI = acos(-1);
// const double EPS = 1e-10;
// mt19937 mert(LL(time(0)));

/* ---------- Short Functions ---------- */

template <typename T>
inline T sq(T a) { return a * a; }

template <typename T>
T gcd(T a, T b) {
    if (a > b) return gcd(b, a);
    return a == 0 ? b : gcd(b % a, a);
}

template <typename T, typename U>
T mypow(T b, U n) {
    if (n == 0) return 1;
    if (n == 1) return b /* % MOD */;
    if (n % 2 == 0) {
        return mypow(b * b /* % MOD */, n / 2);
    } else {
        return mypow(b, n - 1) * b /* % MOD */;
    }
}

ll pcnt(ll b) {
    return __builtin_popcountll(b);
}

/* v-v-v-v-v-v-v-v-v Main Part v-v-v-v-v-v-v-v-v */

const string PDCA = "PDCA";

int main() {
    int N, M;
    cin >> N >> M;

    string S;
    cin >> S;

    vector<int> path[N];
    for (int i = 0; i < M; ++i) {
        int u, v;
        cin >> u >> v;
        --u, --v;
        path[u].push_back(v);
        path[v].push_back(u);
    }

    ll dp[4][N];
    fill(dp[0], dp[4], 0);

    for (int v = 0; v < N; ++v) {
        if (S[v] == PDCA[0]) dp[0][v] = 1;
    }

    for (int k = 1; k < 4; ++k) {
        for (int v = 0; v < N; ++v) {
            if (S[v] != PDCA[k]) continue;

            for (int sv : path[v]) {
                dp[k][v] += dp[k - 1][sv];
            }
            dp[k][v] %= MOD;
        }
    }

    ll ans = 0;
    for (int v = 0; v < N; ++v) {
        ans += dp[3][v];
    }

    cout << ans % MOD << endl;
    return 0;
}
0