結果

問題 No.762 PDCAパス
ユーザー m-44m-44
提出日時 2019-09-12 21:18:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 174,884 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-07-02 17:10:45
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 46 ms
6,940 KB
testcase_23 AC 47 ms
6,944 KB
testcase_24 AC 88 ms
9,984 KB
testcase_25 AC 88 ms
9,856 KB
testcase_26 AC 49 ms
6,940 KB
testcase_27 AC 49 ms
6,944 KB
testcase_28 AC 76 ms
7,748 KB
testcase_29 AC 79 ms
7,808 KB
testcase_30 AC 75 ms
7,552 KB
testcase_31 AC 75 ms
7,552 KB
testcase_32 AC 75 ms
7,552 KB
testcase_33 AC 75 ms
7,168 KB
testcase_34 AC 73 ms
7,168 KB
testcase_35 AC 73 ms
7,168 KB
testcase_36 AC 65 ms
6,944 KB
testcase_37 AC 64 ms
6,940 KB
testcase_38 AC 64 ms
6,940 KB
testcase_39 AC 64 ms
6,944 KB
testcase_40 AC 64 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n, m;
string s;
vector<int> g[(int)1e5];
long long mod = 1e9 + 7;
int x[(int)1e5];
string pdca = "PDCA";

long long dfs(int cur) {
  long long ret = 0;
  if (s[cur] == 'A') {
    return 1;
  }
  for (int to: g[cur]) {
    if (x[to] == -1) {
      ret += dfs(to);
    } else {
      ret += x[to];
    }
    ret %= mod;
  }
  x[cur] = ret;
  return ret;
}

int main() {
  cin>>n>>m;
  cin>>s;
  set<int> ps;
  for (int i=0; i<m; i++) {
    int u, v;
    cin>>u>>v;
    --u;
    --v;
    int iu = pdca.find(s[u]);
    int iv = pdca.find(s[v]);
    if (iu == string::npos || iv == string::npos) {
      continue;
    }
    if (iv == iu + 1) {
      g[u].push_back(v);
      if (s[u] == 'P') {
        ps.insert(u);
      }
    } else if (iu == iv + 1) {
      g[v].push_back(u);
      if (s[v] == 'P') {
        ps.insert(v);
      }
    }
  }
  for (int i=0; i<n; i++) x[i] = -1;
  long long ans = 0;
  for (int i: ps) {
    ans += dfs(i);
    ans %= mod;
  }
  cout<<ans<<endl;
}
0