結果

問題 No.762 PDCAパス
ユーザー totori_nyaatotori_nyaa
提出日時 2019-07-17 19:58:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 172,232 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-12-23 06:03:12
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,656 KB
testcase_01 AC 5 ms
6,528 KB
testcase_02 AC 5 ms
6,528 KB
testcase_03 AC 4 ms
6,656 KB
testcase_04 AC 5 ms
6,656 KB
testcase_05 AC 4 ms
6,656 KB
testcase_06 AC 5 ms
6,528 KB
testcase_07 AC 4 ms
6,656 KB
testcase_08 AC 4 ms
6,528 KB
testcase_09 AC 5 ms
6,656 KB
testcase_10 AC 4 ms
6,528 KB
testcase_11 AC 5 ms
6,528 KB
testcase_12 AC 5 ms
6,528 KB
testcase_13 AC 5 ms
6,656 KB
testcase_14 AC 4 ms
6,528 KB
testcase_15 AC 4 ms
6,656 KB
testcase_16 AC 5 ms
6,656 KB
testcase_17 AC 5 ms
6,656 KB
testcase_18 AC 4 ms
6,656 KB
testcase_19 AC 4 ms
6,656 KB
testcase_20 AC 4 ms
6,656 KB
testcase_21 AC 5 ms
6,528 KB
testcase_22 AC 21 ms
7,680 KB
testcase_23 AC 21 ms
7,680 KB
testcase_24 AC 46 ms
9,984 KB
testcase_25 AC 54 ms
9,856 KB
testcase_26 AC 23 ms
7,936 KB
testcase_27 AC 24 ms
7,808 KB
testcase_28 AC 54 ms
9,600 KB
testcase_29 AC 52 ms
9,472 KB
testcase_30 AC 49 ms
9,216 KB
testcase_31 AC 48 ms
9,216 KB
testcase_32 AC 51 ms
9,216 KB
testcase_33 AC 43 ms
8,960 KB
testcase_34 AC 45 ms
8,704 KB
testcase_35 AC 47 ms
8,704 KB
testcase_36 AC 35 ms
8,192 KB
testcase_37 AC 36 ms
8,320 KB
testcase_38 AC 35 ms
8,320 KB
testcase_39 AC 34 ms
8,320 KB
testcase_40 AC 36 ms
8,320 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