結果

問題 No.762 PDCAパス
ユーザー るさるさ
提出日時 2019-04-09 21:45:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,338 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,228 KB
最終ジャッジ日時 2024-07-05 02:45:13
合計ジャッジ時間 20,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 619 ms
27,648 KB
testcase_23 AC 608 ms
27,520 KB
testcase_24 AC 739 ms
49,228 KB
testcase_25 AC 730 ms
49,228 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,164 ms
47,340 KB
testcase_29 AC 1,190 ms
47,476 KB
testcase_30 AC 1,235 ms
43,984 KB
testcase_31 AC 1,151 ms
43,904 KB
testcase_32 AC 1,146 ms
44,032 KB
testcase_33 AC 1,144 ms
39,792 KB
testcase_34 AC 1,071 ms
39,688 KB
testcase_35 AC 1,142 ms
39,828 KB
testcase_36 AC 945 ms
31,404 KB
testcase_37 AC 942 ms
31,404 KB
testcase_38 AC 909 ms
31,300 KB
testcase_39 AC 917 ms
31,416 KB
testcase_40 AC 946 ms
31,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
class Node:
	def __init__(self):
		self.edge=[]
		self.degree=0
		self.word=""
		self.cnt=0
	
	def add_edge(self,new_edge):
		self.edge.append(new_edge)
		self.degree+=1


class Edge:
	def __init__(self,node_a,node_b):
		node_a.add_edge(self)
		node_b.add_edge(self)
		self.node=(node_a,node_b)


class Graph:
	def __init__(self):
		self.node={}
		self.edge=[]
	
	def add_edge(self,new_edge):
		if not new_edge[0] in self.node:
			self.node[new_edge[0]]=Node()
		if not new_edge[1] in self.node:
			self.node[new_edge[1]]=Node()
		self.edge.append(Edge(self.node[new_edge[0]],self.node[new_edge[1]]))

n,m=map(int,input().split())
s=input()
g=Graph()
for i in range(m):
    g.add_edge(list(map(int,input().split())))
for i in range(len(s)):
    if i+1 in g.node:
        g.node[i+1].word=s[i]

for i in g.edge:
    a,b=i.node[0],i.node[1]
    if (a.word=="P") and (b.word=="D"):
        b.cnt+=1
    if (a.word=="D") and (b.word=="P"):
        a.cnt+=1
        
for i in g.edge:
    a,b=i.node[0],i.node[1]
    if (a.word=="D") and (b.word=="C"):
        b.cnt+=a.cnt
    if (a.word=="C") and (b.word=="D"):
        a.cnt+=b.cnt
c=0

for i in g.edge:
    a,b=i.node[0],i.node[1]
    if (a.word=="C") and (b.word=="A"):
        c+=a.cnt
    if (a.word=="A") and (b.word=="C"):
        c+=b.cnt
print(c)


0