結果

問題 No.762 PDCAパス
ユーザー kotatsugamekotatsugame
提出日時 2018-12-13 00:29:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 72,248 KB
実行使用メモリ 13,076 KB
最終ジャッジ日時 2024-09-25 03:46:27
合計ジャッジ時間 3,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,392 KB
testcase_01 AC 4 ms
8,272 KB
testcase_02 AC 5 ms
7,004 KB
testcase_03 AC 4 ms
7,064 KB
testcase_04 AC 4 ms
7,648 KB
testcase_05 AC 3 ms
7,204 KB
testcase_06 AC 3 ms
7,288 KB
testcase_07 AC 4 ms
7,836 KB
testcase_08 AC 3 ms
7,816 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
8,100 KB
testcase_12 AC 4 ms
7,544 KB
testcase_13 AC 4 ms
7,984 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 4 ms
7,776 KB
testcase_16 AC 4 ms
7,256 KB
testcase_17 AC 3 ms
7,764 KB
testcase_18 AC 4 ms
6,948 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 4 ms
7,340 KB
testcase_21 AC 3 ms
7,992 KB
testcase_22 AC 48 ms
8,888 KB
testcase_23 AC 47 ms
7,972 KB
testcase_24 AC 73 ms
12,840 KB
testcase_25 AC 72 ms
13,076 KB
testcase_26 AC 49 ms
7,976 KB
testcase_27 AC 48 ms
8,920 KB
testcase_28 AC 95 ms
12,488 KB
testcase_29 AC 95 ms
12,608 KB
testcase_30 AC 90 ms
11,672 KB
testcase_31 AC 94 ms
12,544 KB
testcase_32 AC 90 ms
12,188 KB
testcase_33 AC 87 ms
10,540 KB
testcase_34 AC 85 ms
10,556 KB
testcase_35 AC 87 ms
10,260 KB
testcase_36 AC 72 ms
10,044 KB
testcase_37 AC 71 ms
9,120 KB
testcase_38 AC 72 ms
9,672 KB
testcase_39 AC 73 ms
8,772 KB
testcase_40 AC 72 ms
8,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
long m=1e9+7,dp[1<<17][4];
vector<int>G[1<<17];
int n,M;
string s;
main()
{
	cin>>n>>M>>s;
	for(int i=0;i<M;i++)
	{
		int a,b;cin>>a>>b;a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	for(int i=0;i<n;i++)if(s[i]=='P')dp[i][0]=1;
	for(int j=0;j<3;j++)
	{
		for(int i=0;i<n;i++)
		{
			for(int k=0;k<G[i].size();k++)
				if(s[G[i][k]]=="PDCA"[j+1])
					dp[G[i][k]][j+1]=(dp[G[i][k]][j+1]+dp[i][j])%m;
		}
	}
	long ans=0;
	for(int i=0;i<n;i++)ans=(ans+dp[i][3])%m;
	cout<<ans<<endl;
}
0