結果

問題 No.1382 Travel in Mitaru city
ユーザー marroncastlemarroncastle
提出日時 2021-02-07 22:42:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,455 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,400 KB
最終ジャッジ日時 2024-07-04 16:35:57
合計ジャッジ時間 15,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,736 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 WA -
testcase_06 AC 171 ms
81,280 KB
testcase_07 AC 168 ms
80,384 KB
testcase_08 AC 145 ms
79,104 KB
testcase_09 AC 175 ms
82,048 KB
testcase_10 AC 168 ms
81,152 KB
testcase_11 WA -
testcase_12 AC 274 ms
89,600 KB
testcase_13 AC 272 ms
89,728 KB
testcase_14 AC 238 ms
89,856 KB
testcase_15 AC 254 ms
89,344 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 315 ms
98,432 KB
testcase_19 WA -
testcase_20 AC 319 ms
98,432 KB
testcase_21 AC 335 ms
98,432 KB
testcase_22 AC 345 ms
98,432 KB
testcase_23 AC 338 ms
98,176 KB
testcase_24 AC 339 ms
98,432 KB
testcase_25 AC 343 ms
98,176 KB
testcase_26 AC 287 ms
98,176 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 293 ms
98,304 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 149 ms
95,360 KB
testcase_37 AC 83 ms
78,464 KB
testcase_38 AC 151 ms
97,408 KB
testcase_39 AC 91 ms
81,152 KB
testcase_40 AC 127 ms
92,032 KB
testcase_41 AC 129 ms
93,440 KB
testcase_42 AC 143 ms
97,920 KB
testcase_43 AC 139 ms
95,360 KB
testcase_44 AC 95 ms
83,200 KB
testcase_45 AC 129 ms
93,184 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 171 ms
95,744 KB
testcase_52 AC 192 ms
98,304 KB
testcase_53 AC 114 ms
81,408 KB
testcase_54 AC 128 ms
86,272 KB
testcase_55 AC 220 ms
98,176 KB
testcase_56 AC 113 ms
83,328 KB
testcase_57 AC 154 ms
90,880 KB
testcase_58 AC 103 ms
78,080 KB
testcase_59 AC 116 ms
83,328 KB
testcase_60 AC 188 ms
97,536 KB
testcase_61 WA -
testcase_62 AC 41 ms
52,480 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *
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)
    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: ans += 1
          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