結果

問題 No.762 PDCAパス
ユーザー kept1994kept1994
提出日時 2021-09-02 22:22:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,821 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 160,640 KB
最終ジャッジ日時 2024-11-30 13:05:20
合計ジャッジ時間 18,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,088 KB
testcase_01 AC 43 ms
130,560 KB
testcase_02 AC 39 ms
57,472 KB
testcase_03 AC 39 ms
130,560 KB
testcase_04 AC 39 ms
57,600 KB
testcase_05 AC 36 ms
57,344 KB
testcase_06 AC 38 ms
57,216 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 36 ms
51,712 KB
testcase_15 AC 36 ms
52,096 KB
testcase_16 AC 41 ms
57,984 KB
testcase_17 AC 36 ms
52,096 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 36 ms
52,352 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 198 ms
89,472 KB
testcase_25 AC 198 ms
89,856 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 223 ms
89,216 KB
testcase_29 AC 300 ms
89,088 KB
testcase_30 AC 211 ms
87,296 KB
testcase_31 AC 217 ms
87,168 KB
testcase_32 AC 216 ms
87,040 KB
testcase_33 AC 211 ms
84,736 KB
testcase_34 AC 203 ms
84,352 KB
testcase_35 AC 205 ms
84,352 KB
testcase_36 AC 237 ms
81,792 KB
testcase_37 AC 235 ms
81,920 KB
testcase_38 AC 245 ms
81,920 KB
testcase_39 AC 239 ms
81,920 KB
testcase_40 AC 234 ms
160,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
sys.setrecursionlimit(10 ** 9)

def main():
    N, M = map(int, input().split())
    S = input()
    pdca = "PDCA"
    ans = 0
    A = [pdca.index(ss) for ss in S]
    class DFS():
        def __init__(self, N: int) -> None:
            self.nodes = N                          # 頂点数
            self.G = [[] for _ in range(N)]         # グラフ
            self.seen = [False] * N                 # 各ノードが訪問済みかどうかのフラグ
            self.firstOrder = []                    # ノードの行きがけ順(0-index)
            self.lastOrder = []                     # ノードの帰りがけ順(0-index)

        # 辺の追加
        def addEdge(self, fromNode: int, toNode: int, bothDirection: bool):
            self.G[fromNode].append(toNode)
            if bothDirection:
                self.G[toNode].append(fromNode)
        # DFS
        def build(self, now: int, pre:int):
            nonlocal ans
            # ----- ノードに到着した時の処理
            # self.firstOrder.append(now)
            # self.seen[now] = True
            # ----- 隣接する各ノードへの移動処理
            for next in self.G[now]:
                # if self.seen[next]:
                if A[next] != pre + 1:
                    continue
                if pre + 1 == 3:
                    ans += 1
                self.build(next, pre + 1)
            # ----- ノードから戻る時の処理
            # self.lastOrder.append(now)
            return

    d = DFS(N)
    for _ in range(M):
        u, v = map(lambda i : int(i) - 1, input().split())
        d.addEdge(v, u, bothDirection=True)
    
    for i in range(N):
        if A[i] == 0:
            d.build(i, 0)
    print(ans)
    return

if __name__ == '__main__':
    main()
0