結果

問題 No.762 PDCAパス
ユーザー kriiikriii
提出日時 2018-12-10 00:15:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 49,792 KB
実行使用メモリ 10,180 KB
最終ジャッジ日時 2024-09-16 15:40:57
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,948 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 19 ms
6,940 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 34 ms
10,180 KB
testcase_25 AC 34 ms
10,172 KB
testcase_26 AC 21 ms
6,980 KB
testcase_27 AC 22 ms
7,104 KB
testcase_28 AC 46 ms
10,048 KB
testcase_29 AC 41 ms
9,888 KB
testcase_30 AC 39 ms
9,408 KB
testcase_31 AC 39 ms
9,152 KB
testcase_32 AC 41 ms
9,284 KB
testcase_33 AC 37 ms
8,896 KB
testcase_34 AC 38 ms
9,280 KB
testcase_35 AC 36 ms
8,464 KB
testcase_36 AC 31 ms
7,516 KB
testcase_37 AC 32 ms
7,364 KB
testcase_38 AC 32 ms
7,616 KB
testcase_39 AC 32 ms
7,492 KB
testcase_40 AC 34 ms
8,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
using namespace std;

vector<int> G[100100];
int N,M,D[4][100100]; char S[100100];

int main()
{
	scanf ("%d %d %s",&N,&M,S+1);
	for (int i=0;i<M;i++){
		int x,y; scanf ("%d %d",&x,&y);
		G[x].push_back(y);
		G[y].push_back(x);
	}

	const int mod = 1000000007;
	for (int i=1;i<=N;i++) if (S[i] == 'P') D[0][i] = 1;
	for (int i=1;i<=N;i++) if (S[i] == 'D') for (int j : G[i]) D[1][i] = (D[1][i] + D[0][j]) % mod;
	for (int i=1;i<=N;i++) if (S[i] == 'C') for (int j : G[i]) D[2][i] = (D[2][i] + D[1][j]) % mod;
	for (int i=1;i<=N;i++) if (S[i] == 'A') for (int j : G[i]) D[3][i] = (D[3][i] + D[2][j]) % mod;
	int ans = 0;
	for (int i=1;i<=N;i++) ans = (ans + D[3][i]) % mod;
	printf ("%d\n",ans);

	return 0;
}
0