結果

問題 No.1382 Travel in Mitaru city
ユーザー 👑 KazunKazun
提出日時 2021-02-07 21:43:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,711 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 100,060 KB
最終ジャッジ日時 2024-07-04 15:05:15
合計ジャッジ時間 21,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,284 KB
testcase_01 AC 42 ms
55,428 KB
testcase_02 AC 43 ms
54,692 KB
testcase_03 AC 42 ms
54,696 KB
testcase_04 AC 42 ms
54,516 KB
testcase_05 AC 42 ms
54,532 KB
testcase_06 AC 201 ms
82,196 KB
testcase_07 AC 175 ms
80,444 KB
testcase_08 AC 148 ms
79,536 KB
testcase_09 AC 192 ms
81,900 KB
testcase_10 AC 182 ms
82,204 KB
testcase_11 AC 378 ms
91,756 KB
testcase_12 AC 342 ms
89,572 KB
testcase_13 AC 384 ms
90,708 KB
testcase_14 AC 363 ms
89,160 KB
testcase_15 AC 352 ms
89,052 KB
testcase_16 AC 522 ms
96,724 KB
testcase_17 AC 530 ms
97,012 KB
testcase_18 AC 537 ms
99,588 KB
testcase_19 AC 520 ms
99,588 KB
testcase_20 AC 518 ms
99,336 KB
testcase_21 AC 482 ms
96,352 KB
testcase_22 AC 449 ms
96,740 KB
testcase_23 AC 503 ms
96,692 KB
testcase_24 AC 501 ms
96,860 KB
testcase_25 AC 510 ms
96,780 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 393 ms
98,868 KB
testcase_30 AC 211 ms
95,424 KB
testcase_31 AC 407 ms
97,352 KB
testcase_32 AC 433 ms
98,276 KB
testcase_33 WA -
testcase_34 AC 341 ms
90,804 KB
testcase_35 AC 266 ms
87,084 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 132 ms
83,280 KB
testcase_47 AC 273 ms
100,060 KB
testcase_48 AC 219 ms
92,556 KB
testcase_49 AC 272 ms
97,140 KB
testcase_50 AC 177 ms
88,008 KB
testcase_51 AC 415 ms
94,828 KB
testcase_52 AC 457 ms
96,272 KB
testcase_53 AC 200 ms
82,112 KB
testcase_54 AC 269 ms
86,472 KB
testcase_55 AC 477 ms
96,428 KB
testcase_56 AC 247 ms
84,672 KB
testcase_57 AC 345 ms
91,664 KB
testcase_58 AC 167 ms
79,828 KB
testcase_59 AC 237 ms
84,604 KB
testcase_60 AC 412 ms
96,084 KB
testcase_61 AC 75 ms
76,796 KB
testcase_62 AC 43 ms
55,260 KB
testcase_63 AC 90 ms
77,868 KB
testcase_64 AC 77 ms
77,052 KB
testcase_65 AC 55 ms
65,972 KB
testcase_66 AC 75 ms
76,180 KB
testcase_67 AC 74 ms
76,732 KB
testcase_68 AC 74 ms
76,252 KB
testcase_69 AC 73 ms
76,504 KB
testcase_70 AC 81 ms
77,116 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