結果

問題 No.1382 Travel in Mitaru city
ユーザー marroncastlemarroncastle
提出日時 2021-02-07 22:59:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,590 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 103,048 KB
最終ジャッジ日時 2024-07-04 17:32:56
合計ジャッジ時間 16,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,440 KB
testcase_01 AC 40 ms
54,676 KB
testcase_02 AC 42 ms
54,916 KB
testcase_03 AC 40 ms
55,064 KB
testcase_04 AC 40 ms
55,476 KB
testcase_05 AC 42 ms
54,668 KB
testcase_06 AC 173 ms
82,544 KB
testcase_07 AC 158 ms
81,100 KB
testcase_08 AC 138 ms
79,604 KB
testcase_09 AC 169 ms
82,852 KB
testcase_10 AC 169 ms
82,956 KB
testcase_11 WA -
testcase_12 AC 265 ms
89,956 KB
testcase_13 AC 259 ms
90,116 KB
testcase_14 AC 238 ms
89,696 KB
testcase_15 AC 257 ms
89,620 KB
testcase_16 AC 337 ms
97,768 KB
testcase_17 AC 350 ms
96,616 KB
testcase_18 AC 341 ms
96,620 KB
testcase_19 AC 330 ms
96,992 KB
testcase_20 AC 331 ms
97,520 KB
testcase_21 AC 338 ms
95,976 KB
testcase_22 AC 329 ms
95,576 KB
testcase_23 AC 342 ms
96,380 KB
testcase_24 AC 335 ms
96,760 KB
testcase_25 AC 342 ms
96,072 KB
testcase_26 AC 304 ms
95,144 KB
testcase_27 AC 307 ms
95,520 KB
testcase_28 AC 304 ms
95,420 KB
testcase_29 AC 299 ms
95,492 KB
testcase_30 AC 277 ms
95,268 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 137 ms
95,332 KB
testcase_37 AC 76 ms
78,728 KB
testcase_38 AC 146 ms
95,392 KB
testcase_39 AC 83 ms
81,124 KB
testcase_40 AC 118 ms
91,760 KB
testcase_41 AC 119 ms
93,460 KB
testcase_42 AC 136 ms
95,684 KB
testcase_43 AC 123 ms
95,204 KB
testcase_44 AC 90 ms
83,264 KB
testcase_45 AC 122 ms
93,340 KB
testcase_46 AC 146 ms
83,668 KB
testcase_47 AC 295 ms
100,600 KB
testcase_48 AC 235 ms
93,008 KB
testcase_49 AC 300 ms
103,048 KB
testcase_50 AC 188 ms
88,672 KB
testcase_51 AC 161 ms
95,748 KB
testcase_52 AC 179 ms
98,336 KB
testcase_53 AC 103 ms
82,000 KB
testcase_54 AC 119 ms
87,128 KB
testcase_55 AC 173 ms
98,028 KB
testcase_56 AC 106 ms
84,040 KB
testcase_57 AC 137 ms
91,224 KB
testcase_58 AC 84 ms
78,484 KB
testcase_59 AC 103 ms
83,648 KB
testcase_60 AC 173 ms
97,488 KB
testcase_61 AC 50 ms
66,132 KB
testcase_62 AC 42 ms
56,076 KB
testcase_63 AC 70 ms
76,696 KB
testcase_64 AC 55 ms
68,764 KB
testcase_65 AC 46 ms
61,488 KB
testcase_66 AC 51 ms
65,832 KB
testcase_67 AC 53 ms
67,888 KB
testcase_68 AC 55 ms
69,832 KB
testcase_69 AC 51 ms
66,080 KB
testcase_70 AC 56 ms
72,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *
from collections import defaultdict
class Graph:
  def __init__(self, N, M=-1):
    self.V = N
    if M>=0: self.E = M
    self.edge = [[] for _ in range(self.V)]
    self.edge_rev = [[] for _ in range(self.V)]
    self.order = []
    self.to = [0]*self.V
    self.visited = [False]*self.V
    self.dp = [0]*self.V

  def add_edges(self, ind=1, bi=False, rev=False):
    for i in range(self.E):
      a,b = map(int, input().split())
      a -= ind; b -= ind
      self.edge[a].append(b)
      if rev: self.edge_rev[b].append(a)
      if not bi: self.to[b] += 1
      if bi: self.edge[b].append(a)

  def add_edge(self, a, b, dist=-1, bi=False, rev=False):
    if dist>=0:
      self.edge[a].append((dist, b))
      if rev: self.edge_rev[b].append((dist, a))
      if bi: self.edge[b].append((dist, a))
    else:
      self.edge[a].append(b)
      if rev: self.edge_rev[b].append(a)
      if bi: self.edge[b].append(a)
    if not bi: self.to[b] += 1

  def bfs(self, start):
    self.visited[start] = True
    d = [(-P[start], start)]
    heapify(d)
    dic = defaultdict(lambda: False)
    ans = 0
    while len(d)>0:
      p,v = heappop(d)
      for w in self.edge[v]:
        if not self.visited[w]:
          if P[w]<-p and dic[P[w]]==False:
            ans += 1
            dic[P[w]] = True
          else: P[w] = -p
          self.visited[w] = True
          heappush(d, (-P[w],w))
    return ans

N, M, S, T = map(int, input().split())
P = list(map(int, input().split()))
G = Graph(N,M)
G.add_edges(bi=True)
print(G.bfs(S-1))
0