結果

問題 No.762 PDCAパス
ユーザー totori_nyaatotori_nyaa
提出日時 2019-07-17 19:58:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 1,299 ms
コンパイル使用メモリ 173,788 KB
実行使用メモリ 9,976 KB
最終ジャッジ日時 2024-06-02 09:46:58
合計ジャッジ時間 3,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,656 KB
testcase_01 AC 3 ms
6,656 KB
testcase_02 AC 3 ms
6,656 KB
testcase_03 AC 3 ms
6,656 KB
testcase_04 AC 4 ms
6,528 KB
testcase_05 AC 3 ms
6,784 KB
testcase_06 AC 3 ms
6,656 KB
testcase_07 AC 2 ms
6,656 KB
testcase_08 AC 2 ms
6,656 KB
testcase_09 AC 3 ms
6,784 KB
testcase_10 AC 3 ms
6,656 KB
testcase_11 AC 3 ms
6,784 KB
testcase_12 AC 3 ms
6,656 KB
testcase_13 AC 3 ms
6,656 KB
testcase_14 AC 3 ms
6,784 KB
testcase_15 AC 3 ms
6,656 KB
testcase_16 AC 4 ms
6,656 KB
testcase_17 AC 3 ms
6,656 KB
testcase_18 AC 3 ms
6,528 KB
testcase_19 AC 3 ms
6,528 KB
testcase_20 AC 3 ms
6,656 KB
testcase_21 AC 3 ms
6,656 KB
testcase_22 AC 17 ms
7,680 KB
testcase_23 AC 17 ms
7,680 KB
testcase_24 AC 30 ms
9,968 KB
testcase_25 AC 29 ms
9,976 KB
testcase_26 AC 18 ms
7,808 KB
testcase_27 AC 18 ms
7,808 KB
testcase_28 AC 34 ms
9,472 KB
testcase_29 AC 34 ms
9,556 KB
testcase_30 AC 32 ms
9,128 KB
testcase_31 AC 34 ms
9,088 KB
testcase_32 AC 34 ms
9,216 KB
testcase_33 AC 32 ms
8,832 KB
testcase_34 AC 32 ms
8,832 KB
testcase_35 AC 32 ms
8,832 KB
testcase_36 AC 26 ms
8,192 KB
testcase_37 AC 25 ms
8,320 KB
testcase_38 AC 26 ms
8,320 KB
testcase_39 AC 26 ms
8,192 KB
testcase_40 AC 25 ms
8,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll mod=1e9+7;
vector<vector<int>> v(111111);
string s;
int n,m;
string pdca="PDCA";
vector<ll> cnt(111111,1);

ll calc(int a,int p){
    ll ret=0;
    for(auto i:v[p]){
        if(s[i]==pdca[a+1]){
            ret+=cnt[i];
            ret%=mod;
        }
    }

    return ret;
}

signed main(){
    ios::sync_with_stdio(false);
	cin.tie(0);

    cin>>n>>m;
    cin>>s;
    for(int i=0;i<m;i++){
        int a,b;
        cin>>a>>b;
        a--,b--;
        v[a].push_back(b);
        v[b].push_back(a);
    }
    ll ans=0;
    for(int i=2;i>=0;i--){
        for(int j=0;j<n;j++){
            if(pdca[i]==s[j]){
                cnt[j]=calc(i,j);
                if(i==0) ans+=cnt[j];
                ans%=mod;
            }
        }
    }
    cout<<ans<<endl;

}
0