結果

問題 No.1473 おでぶなおばけさん
ユーザー timitimi
提出日時 2021-04-26 17:00:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,098 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 134,840 KB
最終ジャッジ日時 2024-07-05 02:34:57
合計ジャッジ時間 27,913 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,724 KB
testcase_01 AC 40 ms
53,856 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 813 ms
133,544 KB
testcase_08 AC 807 ms
132,792 KB
testcase_09 AC 792 ms
132,160 KB
testcase_10 AC 342 ms
90,264 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 225 ms
85,820 KB
testcase_14 AC 164 ms
81,400 KB
testcase_15 AC 294 ms
88,268 KB
testcase_16 AC 332 ms
92,220 KB
testcase_17 AC 62 ms
68,432 KB
testcase_18 AC 74 ms
71,844 KB
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 WA -
testcase_28 AC 782 ms
134,840 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 TLE -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 TLE -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 329 ms
92,320 KB
testcase_42 AC 333 ms
92,240 KB
testcase_43 AC 191 ms
97,328 KB
testcase_44 AC 194 ms
97,448 KB
testcase_45 AC 189 ms
97,808 KB
testcase_46 AC 685 ms
112,160 KB
testcase_47 AC 734 ms
119,976 KB
testcase_48 AC 683 ms
116,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
sys.setrecursionlimit(10**7)
N,M=map(int, input().split())
D=[]
for i in range(M):
  s,t,d=map(int, input().split())
  D.append((d,s,t))
D=sorted(D)[::-1]
par=[i for i in range(N)]
rank=[0]*(N)
friend=[0]*N
block=[0]*N
size=[1]*N
def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]
 
#同じ集合か判定
def same(x,y):
  return find(x)==find(y)
 
def union(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 
  if rank[x]>rank[y]:
    par[y]=x
    size[x]+=size[y]
  else:
    par[x]=y
    size[y]+=size[x]
    if rank[x]==rank[y]:
      rank[y]+=1
E=[[]for i in range(N)] 
limit=0
for d,s,t in D:
  #print(s,t,d,limit)
  if limit>d:
    break
  s-=1
  t-=1
  union(s,t)
  E[s].append(t)
  E[t].append(s)
  if same(0,N-1):
    answ=d
    limit=d
from collections import deque
d=deque()
d.append((0,0,0))
F=[N]*N
while d:
  now,pre,num=d.popleft()
  for nex in E[now]:
    if nex==N-1:
      print(answ,num+1)
      exit()
    if nex!=pre:
      if num+1<F[nex]:
        F[nex]=num
        d.appendleft((nex,now,num+1))
0