結果

問題 No.1382 Travel in Mitaru city
ユーザー marroncastlemarroncastle
提出日時 2021-02-07 23:04:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 1,606 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,944 KB
最終ジャッジ日時 2024-07-04 17:41:57
合計ジャッジ時間 18,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,528 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 47 ms
54,272 KB
testcase_03 AC 47 ms
54,400 KB
testcase_04 AC 48 ms
54,144 KB
testcase_05 AC 47 ms
54,272 KB
testcase_06 AC 196 ms
82,560 KB
testcase_07 AC 189 ms
81,152 KB
testcase_08 AC 166 ms
79,616 KB
testcase_09 AC 203 ms
82,560 KB
testcase_10 AC 195 ms
82,944 KB
testcase_11 AC 291 ms
90,788 KB
testcase_12 AC 310 ms
90,024 KB
testcase_13 AC 316 ms
89,836 KB
testcase_14 AC 278 ms
89,728 KB
testcase_15 AC 297 ms
90,112 KB
testcase_16 AC 399 ms
97,456 KB
testcase_17 AC 389 ms
96,412 KB
testcase_18 AC 395 ms
96,832 KB
testcase_19 AC 397 ms
97,048 KB
testcase_20 AC 383 ms
97,848 KB
testcase_21 AC 393 ms
95,772 KB
testcase_22 AC 381 ms
95,368 KB
testcase_23 AC 394 ms
96,032 KB
testcase_24 AC 396 ms
96,928 KB
testcase_25 AC 392 ms
96,280 KB
testcase_26 AC 341 ms
94,976 KB
testcase_27 AC 372 ms
95,460 KB
testcase_28 AC 335 ms
95,232 KB
testcase_29 AC 347 ms
94,976 KB
testcase_30 AC 334 ms
94,976 KB
testcase_31 AC 202 ms
95,360 KB
testcase_32 AC 233 ms
94,976 KB
testcase_33 AC 225 ms
95,104 KB
testcase_34 AC 172 ms
89,984 KB
testcase_35 AC 144 ms
85,188 KB
testcase_36 AC 156 ms
95,104 KB
testcase_37 AC 91 ms
78,592 KB
testcase_38 AC 167 ms
95,488 KB
testcase_39 AC 98 ms
81,152 KB
testcase_40 AC 139 ms
91,776 KB
testcase_41 AC 141 ms
93,056 KB
testcase_42 AC 158 ms
95,488 KB
testcase_43 AC 147 ms
95,360 KB
testcase_44 AC 107 ms
83,712 KB
testcase_45 AC 144 ms
93,184 KB
testcase_46 AC 184 ms
83,584 KB
testcase_47 AC 360 ms
100,108 KB
testcase_48 AC 281 ms
93,040 KB
testcase_49 AC 381 ms
101,944 KB
testcase_50 AC 239 ms
88,716 KB
testcase_51 AC 205 ms
95,488 KB
testcase_52 AC 222 ms
98,332 KB
testcase_53 AC 118 ms
81,664 KB
testcase_54 AC 145 ms
86,656 KB
testcase_55 AC 213 ms
97,664 KB
testcase_56 AC 123 ms
83,436 KB
testcase_57 AC 171 ms
90,880 KB
testcase_58 AC 103 ms
78,464 KB
testcase_59 AC 129 ms
83,328 KB
testcase_60 AC 214 ms
97,408 KB
testcase_61 AC 59 ms
65,408 KB
testcase_62 AC 47 ms
54,912 KB
testcase_63 AC 84 ms
76,672 KB
testcase_64 AC 65 ms
68,096 KB
testcase_65 AC 55 ms
61,056 KB
testcase_66 AC 61 ms
65,024 KB
testcase_67 AC 62 ms
66,176 KB
testcase_68 AC 67 ms
69,376 KB
testcase_69 AC 61 ms
65,024 KB
testcase_70 AC 69 ms
71,040 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:
            if 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