結果
問題 | No.1382 Travel in Mitaru city |
ユーザー | mkawa2 |
提出日時 | 2021-02-07 22:49:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,820 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 43,028 KB |
最終ジャッジ日時 | 2024-07-04 16:54:24 |
合計ジャッジ時間 | 27,298 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,880 KB |
testcase_01 | AC | 33 ms
10,880 KB |
testcase_02 | AC | 29 ms
11,008 KB |
testcase_03 | AC | 28 ms
10,880 KB |
testcase_04 | AC | 29 ms
11,008 KB |
testcase_05 | AC | 31 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 212 ms
18,432 KB |
testcase_08 | WA | - |
testcase_09 | AC | 297 ms
21,504 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 | 570 ms
42,800 KB |
testcase_28 | AC | 556 ms
42,560 KB |
testcase_29 | AC | 553 ms
42,800 KB |
testcase_30 | AC | 524 ms
42,684 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 323 ms
37,700 KB |
testcase_37 | AC | 77 ms
15,104 KB |
testcase_38 | AC | 352 ms
40,748 KB |
testcase_39 | AC | 109 ms
18,544 KB |
testcase_40 | AC | 280 ms
33,292 KB |
testcase_41 | AC | 336 ms
35,928 KB |
testcase_42 | AC | 395 ms
41,316 KB |
testcase_43 | AC | 345 ms
37,152 KB |
testcase_44 | AC | 157 ms
21,356 KB |
testcase_45 | AC | 312 ms
34,800 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 346 ms
31,508 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 | 41 ms
11,008 KB |
testcase_62 | AC | 29 ms
10,880 KB |
testcase_63 | AC | 96 ms
11,776 KB |
testcase_64 | AC | 48 ms
11,136 KB |
testcase_65 | AC | 32 ms
11,008 KB |
testcase_66 | AC | 41 ms
11,008 KB |
testcase_67 | AC | 43 ms
11,136 KB |
testcase_68 | AC | 56 ms
11,392 KB |
testcase_69 | AC | 41 ms
11,008 KB |
testcase_70 | AC | 61 ms
11,264 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def MI(): return map(int, sys.stdin.buffer.readline().split()) def MI1(): return map(int1, sys.stdin.buffer.readline().split()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [[(-1, 0), (1, 0)], [(0, -1), (0, 1)]] inf = 10**16 md = 998244353 # md = 10**9+7 class UnionFind: def __init__(self, n): self.state = [-1] * n # self.size_table = [1] * n # cntはグループ数 # self.cnt = n def root(self, u): v = self.state[u] if v < 0: return u self.state[u] = res = self.root(v) return res def merge(self, u, v): ru = self.root(u) rv = self.root(v) if ru == rv: return du = self.state[ru] dv = self.state[rv] if du > dv: ru, rv = rv, ru if du == dv: self.state[ru] -= 1 self.state[rv] = ru # self.cnt -= 1 # self.size_table[ru] += self.size_table[rv] return n,m,s,t=MI() s,t=s-1,t-1 pp=LI() to=[[] for _ in range(n)] for _ in range(m): u,v=MI1() to[u].append(v) to[v].append(u) pu=[(p,u) for u,p in enumerate(pp)] pu.sort(reverse=True) pre=pp[s] uf=UnionFind(n) fin=[False]*n ans=0 for p,u in pu: fin[u]=True for v in to[u]: if fin[v]:continue uf.merge(u,v) if p<pre and uf.root(s)==uf.root(u): ans+=1 pre=p print(ans)