結果

問題 No.1382 Travel in Mitaru city
ユーザー vwxyzvwxyz
提出日時 2023-11-30 12:12:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 1,348 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 111,756 KB
最終ジャッジ日時 2024-09-26 13:55:52
合計ジャッジ時間 28,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
89,600 KB
testcase_01 AC 166 ms
89,728 KB
testcase_02 AC 163 ms
89,600 KB
testcase_03 AC 163 ms
89,600 KB
testcase_04 AC 161 ms
89,600 KB
testcase_05 AC 161 ms
89,600 KB
testcase_06 AC 274 ms
94,976 KB
testcase_07 AC 282 ms
94,464 KB
testcase_08 AC 265 ms
93,440 KB
testcase_09 AC 301 ms
95,488 KB
testcase_10 AC 309 ms
95,616 KB
testcase_11 AC 394 ms
102,272 KB
testcase_12 AC 427 ms
102,144 KB
testcase_13 AC 451 ms
102,400 KB
testcase_14 AC 385 ms
102,272 KB
testcase_15 AC 400 ms
102,144 KB
testcase_16 AC 497 ms
109,184 KB
testcase_17 AC 491 ms
109,056 KB
testcase_18 AC 481 ms
108,928 KB
testcase_19 AC 449 ms
108,928 KB
testcase_20 AC 446 ms
108,928 KB
testcase_21 AC 519 ms
109,184 KB
testcase_22 AC 519 ms
109,312 KB
testcase_23 AC 529 ms
108,928 KB
testcase_24 AC 491 ms
109,184 KB
testcase_25 AC 495 ms
108,928 KB
testcase_26 AC 539 ms
108,928 KB
testcase_27 AC 553 ms
109,184 KB
testcase_28 AC 513 ms
109,312 KB
testcase_29 AC 481 ms
109,056 KB
testcase_30 AC 490 ms
108,928 KB
testcase_31 AC 341 ms
106,368 KB
testcase_32 AC 388 ms
108,544 KB
testcase_33 AC 370 ms
108,544 KB
testcase_34 AC 302 ms
102,272 KB
testcase_35 AC 277 ms
98,560 KB
testcase_36 AC 279 ms
106,496 KB
testcase_37 AC 221 ms
92,672 KB
testcase_38 AC 298 ms
108,416 KB
testcase_39 AC 235 ms
94,720 KB
testcase_40 AC 288 ms
103,424 KB
testcase_41 AC 289 ms
104,960 KB
testcase_42 AC 307 ms
108,544 KB
testcase_43 AC 283 ms
106,752 KB
testcase_44 AC 232 ms
96,896 KB
testcase_45 AC 279 ms
104,704 KB
testcase_46 AC 316 ms
96,768 KB
testcase_47 AC 525 ms
110,240 KB
testcase_48 AC 459 ms
105,368 KB
testcase_49 AC 585 ms
111,756 KB
testcase_50 AC 379 ms
100,608 KB
testcase_51 AC 336 ms
105,728 KB
testcase_52 AC 372 ms
108,416 KB
testcase_53 AC 245 ms
94,464 KB
testcase_54 AC 277 ms
99,200 KB
testcase_55 AC 354 ms
108,288 KB
testcase_56 AC 250 ms
96,256 KB
testcase_57 AC 309 ms
102,400 KB
testcase_58 AC 225 ms
92,160 KB
testcase_59 AC 256 ms
96,384 KB
testcase_60 AC 351 ms
108,288 KB
testcase_61 AC 194 ms
90,880 KB
testcase_62 AC 181 ms
89,600 KB
testcase_63 AC 203 ms
91,520 KB
testcase_64 AC 191 ms
90,624 KB
testcase_65 AC 185 ms
90,112 KB
testcase_66 AC 192 ms
90,624 KB
testcase_67 AC 182 ms
90,624 KB
testcase_68 AC 180 ms
90,368 KB
testcase_69 AC 176 ms
90,496 KB
testcase_70 AC 182 ms
90,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

N,M,S,T=map(int,readline().split())
S-=1;T-=1
P=list(map(int,readline().split()))
for i in range(N):
    P[i]-=1
graph=[[] for x in range(N)]
for m in range(M):
    a,b=map(int,readline().split())
    a-=1;b-=1
    graph[a].append(b)
    graph[b].append(a)
queue=[(P[S],S)]
seen=[False]*N
seen[S]=True
Y=[-1]*N
y=0
x=P[S]
while queue:
    p,a=_heappop_max(queue)
    if x>P[a]:
        x=P[a]
        y+=1
    Y[a]=y
    for b in graph[a]:
        if seen[b]:
            continue
        _heappush_max(queue,(P[b],b))
        seen[b]=True
ans=max(Y)
print(ans)
0