結果

問題 No.762 PDCAパス
ユーザー t33ft33f
提出日時 2018-12-10 20:31:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 71,424 KB
実行使用メモリ 12,112 KB
最終ジャッジ日時 2024-09-16 15:56:54
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
8,960 KB
testcase_01 AC 6 ms
9,088 KB
testcase_02 AC 5 ms
8,928 KB
testcase_03 AC 5 ms
8,844 KB
testcase_04 AC 5 ms
8,952 KB
testcase_05 AC 4 ms
8,960 KB
testcase_06 AC 4 ms
8,960 KB
testcase_07 AC 5 ms
8,884 KB
testcase_08 AC 4 ms
8,992 KB
testcase_09 AC 6 ms
8,944 KB
testcase_10 AC 4 ms
8,932 KB
testcase_11 AC 4 ms
8,868 KB
testcase_12 AC 4 ms
8,884 KB
testcase_13 AC 4 ms
8,832 KB
testcase_14 AC 5 ms
8,832 KB
testcase_15 AC 4 ms
8,960 KB
testcase_16 AC 5 ms
8,960 KB
testcase_17 AC 6 ms
8,960 KB
testcase_18 AC 5 ms
8,896 KB
testcase_19 AC 5 ms
8,960 KB
testcase_20 AC 4 ms
8,960 KB
testcase_21 AC 5 ms
8,960 KB
testcase_22 AC 46 ms
9,728 KB
testcase_23 AC 46 ms
9,984 KB
testcase_24 AC 74 ms
12,012 KB
testcase_25 AC 71 ms
12,112 KB
testcase_26 AC 47 ms
10,112 KB
testcase_27 AC 47 ms
10,112 KB
testcase_28 AC 92 ms
11,776 KB
testcase_29 AC 94 ms
11,816 KB
testcase_30 AC 89 ms
11,352 KB
testcase_31 AC 87 ms
11,404 KB
testcase_32 AC 89 ms
11,392 KB
testcase_33 AC 79 ms
11,136 KB
testcase_34 AC 86 ms
11,100 KB
testcase_35 AC 88 ms
11,044 KB
testcase_36 AC 70 ms
10,496 KB
testcase_37 AC 69 ms
10,496 KB
testcase_38 AC 68 ms
10,496 KB
testcase_39 AC 70 ms
10,564 KB
testcase_40 AC 68 ms
10,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>
#define M 1000000007
using namespace std;
int main(int argc, char** argv) {
    int n, m;
    string s;
    cin >> n >> m >> s;
    vector<int> adj[100100];

    for (int i = 0; i < m; i++) {
        int x, y; cin >> x >> y;
        adj[x].push_back(y); adj[y].push_back(x);
    }
    long long dp[4][100100] = {};
    const string target = "ACDP";
    for (int j = 1; j <= n; j++) if (s[j-1] == 'A') dp[0][j] = 1;
    for (int i = 1; i < 4; i++)
        for (int j = 1; j <= n; j++) {
            if (s[j-1] == target[i])
                for (int k : adj[j]) dp[i][j] += dp[i-1][k];
            dp[i][j] %= M;
        }
    long long ans = 0;
    for (int j = 1; j <= n; j++) ans += dp[3][j];
    cout << ans % M << endl;
}
0