結果
問題 | No.1382 Travel in Mitaru city |
ユーザー | rlangevin |
提出日時 | 2023-03-02 12:35:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,221 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 92,752 KB |
最終ジャッジ日時 | 2024-09-17 08:19:22 |
合計ジャッジ時間 | 12,424 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
51,968 KB |
testcase_01 | AC | 34 ms
52,608 KB |
testcase_02 | AC | 33 ms
51,968 KB |
testcase_03 | AC | 34 ms
52,352 KB |
testcase_04 | AC | 33 ms
51,968 KB |
testcase_05 | AC | 35 ms
52,352 KB |
testcase_06 | WA | - |
testcase_07 | AC | 121 ms
77,496 KB |
testcase_08 | WA | - |
testcase_09 | AC | 129 ms
77,204 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 238 ms
91,980 KB |
testcase_28 | AC | 239 ms
91,904 KB |
testcase_29 | AC | 242 ms
92,296 KB |
testcase_30 | AC | 242 ms
92,364 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 96 ms
90,224 KB |
testcase_37 | AC | 66 ms
76,288 KB |
testcase_38 | AC | 106 ms
91,776 KB |
testcase_39 | AC | 75 ms
78,208 KB |
testcase_40 | AC | 84 ms
86,400 KB |
testcase_41 | AC | 86 ms
88,320 KB |
testcase_42 | AC | 101 ms
91,816 KB |
testcase_43 | AC | 94 ms
89,604 KB |
testcase_44 | AC | 71 ms
79,744 KB |
testcase_45 | AC | 85 ms
88,320 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 86 ms
84,864 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | AC | 44 ms
64,384 KB |
testcase_62 | AC | 32 ms
52,096 KB |
testcase_63 | AC | 56 ms
75,968 KB |
testcase_64 | AC | 44 ms
66,816 KB |
testcase_65 | AC | 38 ms
60,160 KB |
testcase_66 | AC | 43 ms
64,768 KB |
testcase_67 | AC | 43 ms
64,512 KB |
testcase_68 | AC | 45 ms
67,200 KB |
testcase_69 | AC | 43 ms
64,896 KB |
testcase_70 | AC | 47 ms
68,608 KB |
ソースコード
import sys readline = sys.stdin.readline class UnionFind(object): def __init__(self, n=1): self.par = [i for i in range(n)] self.rank = [0 for _ in range(n)] self.size = [1 for _ in range(n)] def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.par[y] = x self.size[x] += self.size[y] def is_same(self, x, y): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] N, M, S, T = map(int, readline().split()) S, T = S - 1, T - 1 P = list(map(int, readline().split())) U = UnionFind(N) for i in range(M): A, B = map(int, readline().split()) A, B = A - 1, B - 1 U.union(A, B) SS = set() for i in range(N): if U.find(i) != U.find(S): continue if P[i] < P[S]: SS.add(P[i]) print(len(SS))