結果

問題 No.762 PDCAパス
ユーザー wunderkammer2wunderkammer2
提出日時 2019-12-30 22:10:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 108,820 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-04-27 16:02:40
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 51 ms
6,940 KB
testcase_23 AC 51 ms
6,944 KB
testcase_24 AC 65 ms
8,064 KB
testcase_25 AC 64 ms
8,064 KB
testcase_26 AC 71 ms
6,940 KB
testcase_27 AC 72 ms
6,944 KB
testcase_28 AC 72 ms
6,944 KB
testcase_29 AC 72 ms
6,940 KB
testcase_30 AC 70 ms
6,948 KB
testcase_31 AC 71 ms
6,940 KB
testcase_32 AC 70 ms
6,944 KB
testcase_33 AC 67 ms
6,944 KB
testcase_34 AC 68 ms
6,944 KB
testcase_35 AC 67 ms
6,944 KB
testcase_36 AC 60 ms
6,940 KB
testcase_37 AC 61 ms
6,940 KB
testcase_38 AC 61 ms
6,940 KB
testcase_39 AC 60 ms
6,944 KB
testcase_40 AC 60 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<cmath>
#include<cstdio>
#include<functional>
#include<iomanip>
#include<iostream>
#include<map>
#include<queue>
#include<set>
#include<string>
#include<utility>
#include<vector>

using namespace std;
typedef long long ll;
const ll mod = 1000000007;
#define rep(i,n) for(int i=0;i<n;i++)
#define repl(i,s,e) for(int i=s;i<e;i++)
#define reple(i,s,e) for(int i=s;i<=e;i++)
#define revrep(i,n) for(int i=n-1;i>=0;i--)
#define all(x) (x).begin(),(x).end()

int main()
{	
	int N, M;
	cin >> N >> M;

	string s;
	cin >> s;

	map<char, char> next
	{
	  {'P', 'D'}
	, {'D', 'C'}
	, { 'C', 'A'}
	, { 'A', 'X'}
	};
	

	vector<vector<int>> edges(N, vector<int>());

	rep(i, M)
	{
		int u, v;
		cin >> u >> v;

		--u;
		--v;

		if (next[s[u]] == s[v]) edges[u].push_back(v);
		if (next[s[v]] == s[u]) edges[v].push_back(u);
	}

	ll count = 0;
	rep(i, N)
	{
		if (s[i] != 'P') continue;

		for (auto d : edges[i])
		{
			for (auto c : edges[d])
			{
				count += edges[c].size();
				count %= mod;
			}
		}
	}

	cout << count << endl;

	return 0;
}
0