結果

問題 No.762 PDCAパス
ユーザー RubikunRubikun
提出日時 2019-06-17 05:44:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 170,260 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-05-04 11:40:42
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 44 ms
5,376 KB
testcase_23 AC 44 ms
5,376 KB
testcase_24 AC 70 ms
9,856 KB
testcase_25 AC 72 ms
9,856 KB
testcase_26 AC 45 ms
5,376 KB
testcase_27 AC 44 ms
5,376 KB
testcase_28 AC 97 ms
9,472 KB
testcase_29 AC 95 ms
9,472 KB
testcase_30 AC 90 ms
8,320 KB
testcase_31 AC 92 ms
8,320 KB
testcase_32 AC 89 ms
8,320 KB
testcase_33 AC 80 ms
7,040 KB
testcase_34 AC 81 ms
7,168 KB
testcase_35 AC 80 ms
7,296 KB
testcase_36 AC 66 ms
5,504 KB
testcase_37 AC 67 ms
5,504 KB
testcase_38 AC 67 ms
5,504 KB
testcase_39 AC 66 ms
5,504 KB
testcase_40 AC 66 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007;


int main(){

    int N,M;cin>>N>>M;
    string S;cin>>S;
    vector<int> T[N];
    for(int i=0;i<M;i++){
        int a,b;cin>>a>>b;
        a--;b--;
        T[a].push_back(b);
        T[b].push_back(a);
    }
    ll dp[N];
    for(int i=0;i<N;i++){
        dp[i]=0;
    }
    for(int i=0;i<N;i++){
        if(S[i]=='A'){
            for(int j=0;j<T[i].size();j++){
                int a=T[i][j];
                if(S[a]=='C') dp[a]++;
            }
        }
    }
    for(int i=0;i<N;i++){
        if(S[i]=='C'){
            for(int j=0;j<T[i].size();j++){
                int a=T[i][j];
                if(S[a]=='D'){
                    dp[a]+=dp[i];
                    dp[a]=dp[a]%mod;
                }
            }
        }
    }
    for(int i=0;i<N;i++){
        if(S[i]=='D'){
            for(int j=0;j<T[i].size();j++){
                int a=T[i][j];
                if(S[a]=='P'){
                    dp[a]+=dp[i];
                    dp[a]=dp[a]%mod;
                }
            }
        }
    }
    ll ans=0;
    for(int i=0;i<N;i++){
        if(S[i]=='P'){
            ans+=dp[i];
            ans=ans%mod;
        }
    }
    cout<<ans<<endl;
}
0