結果

問題 No.1382 Travel in Mitaru city
ユーザー 👑 KazunKazun
提出日時 2021-02-07 21:43:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 2,712 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 99,944 KB
最終ジャッジ日時 2024-07-04 15:06:39
合計ジャッジ時間 21,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,340 KB
testcase_01 AC 43 ms
55,376 KB
testcase_02 AC 42 ms
54,684 KB
testcase_03 AC 42 ms
55,644 KB
testcase_04 AC 44 ms
55,840 KB
testcase_05 AC 43 ms
56,052 KB
testcase_06 AC 200 ms
81,936 KB
testcase_07 AC 173 ms
80,212 KB
testcase_08 AC 150 ms
79,848 KB
testcase_09 AC 192 ms
82,128 KB
testcase_10 AC 188 ms
82,376 KB
testcase_11 AC 375 ms
91,864 KB
testcase_12 AC 336 ms
89,684 KB
testcase_13 AC 377 ms
90,800 KB
testcase_14 AC 360 ms
89,108 KB
testcase_15 AC 342 ms
89,296 KB
testcase_16 AC 503 ms
96,628 KB
testcase_17 AC 536 ms
96,624 KB
testcase_18 AC 541 ms
99,944 KB
testcase_19 AC 519 ms
99,572 KB
testcase_20 AC 511 ms
99,312 KB
testcase_21 AC 479 ms
96,548 KB
testcase_22 AC 447 ms
96,808 KB
testcase_23 AC 489 ms
96,524 KB
testcase_24 AC 497 ms
96,564 KB
testcase_25 AC 501 ms
96,600 KB
testcase_26 AC 461 ms
99,860 KB
testcase_27 AC 423 ms
98,440 KB
testcase_28 AC 445 ms
97,940 KB
testcase_29 AC 461 ms
96,408 KB
testcase_30 AC 341 ms
95,028 KB
testcase_31 AC 397 ms
97,884 KB
testcase_32 AC 422 ms
97,748 KB
testcase_33 AC 389 ms
97,960 KB
testcase_34 AC 333 ms
90,496 KB
testcase_35 AC 255 ms
86,572 KB
testcase_36 AC 199 ms
92,884 KB
testcase_37 AC 98 ms
78,904 KB
testcase_38 AC 207 ms
94,892 KB
testcase_39 AC 120 ms
82,580 KB
testcase_40 AC 168 ms
89,408 KB
testcase_41 AC 180 ms
91,272 KB
testcase_42 AC 207 ms
94,912 KB
testcase_43 AC 188 ms
92,960 KB
testcase_44 AC 122 ms
82,488 KB
testcase_45 AC 169 ms
90,996 KB
testcase_46 AC 133 ms
83,208 KB
testcase_47 AC 297 ms
97,824 KB
testcase_48 AC 227 ms
90,876 KB
testcase_49 AC 288 ms
96,904 KB
testcase_50 AC 181 ms
87,632 KB
testcase_51 AC 402 ms
94,564 KB
testcase_52 AC 438 ms
96,476 KB
testcase_53 AC 191 ms
82,572 KB
testcase_54 AC 255 ms
86,612 KB
testcase_55 AC 458 ms
96,360 KB
testcase_56 AC 231 ms
84,668 KB
testcase_57 AC 332 ms
91,280 KB
testcase_58 AC 157 ms
79,624 KB
testcase_59 AC 230 ms
84,348 KB
testcase_60 AC 397 ms
95,704 KB
testcase_61 AC 74 ms
76,540 KB
testcase_62 AC 44 ms
55,612 KB
testcase_63 AC 91 ms
77,324 KB
testcase_64 AC 75 ms
76,416 KB
testcase_65 AC 55 ms
66,752 KB
testcase_66 AC 73 ms
76,436 KB
testcase_67 AC 74 ms
77,088 KB
testcase_68 AC 73 ms
76,272 KB
testcase_69 AC 70 ms
76,292 KB
testcase_70 AC 79 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Union_Find():
    def __init__(self,N):
        """0,1,...,n-1を要素として初期化する.

        N:要素数
        """
        self.n=N
        self.parents=[-1]*N
        self.rank=[0]*N

    def find(self, x):
        """要素xの属している族を調べる.

        x:要素
        """
        V=[]
        while self.parents[x]>=0:
            V.append(x)
            x=self.parents[x]

        for v in V:
            self.parents[v]=x
        return x

    def union(self, x, y):
        """要素x,yを同一視する.

        x,y:要素
        """
        x=self.find(x)
        y=self.find(y)

        if x==y:
            return

        if self.rank[x]<self.rank[y]:
            x,y=y,x

        self.parents[x]+=self.parents[y]
        self.parents[y]=x

        if self.rank[x]==self.rank[y]:
            self.rank[x]+=1

    def size(self, x):
        """要素xの属している要素の数.

        x:要素
        """
        return -self.parents[self.find(x)]

    def same(self, x, y):
        """要素x,yは同一視されているか?

        x,y:要素
        """
        return self.find(x) == self.find(y)

    def members(self, x):
        """要素xが属している族の要素.
        ※族の要素の個数が欲しいときはsizeを使うこと!!

        x:要素
        """
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        """族の名前のリスト
        """
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        """族の個数
        """
        return len(self.roots())

    def all_group_members(self):
        """全ての族の出力
        """
        X={r:[] for r in self.roots()}
        for k in range(self.n):
            X[self.find(k)].append(k)
        return X

    def refresh(self):
        for i in range(self.n):
            _=self.find(i)

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

    def __repr__(self):
        return self.__str__()
#================================================
from collections import defaultdict
import sys

input=sys.stdin.readline
N,M,S,T=map(int,input().split())
P=["*"]+list(map(int,input().split()))

E=[[] for _ in range(N+1)]
for _ in range(M):
    a,b=map(int,input().split())
    E[a].append(b)
    E[b].append(a)

U=Union_Find(N+1)
F=sorted(range(1,N+1),key=lambda x:P[x],reverse=True)
Flag=defaultdict(int)
Ans=0

for x in F:
    for y in E[x]:
        if P[y]>=P[x]:
            U.union(x,y)

    if P[x]<P[S] and U.same(x,S) and Flag[P[x]]==0:
        Ans+=1
        Flag[P[x]]=1
print(Ans)
0