結果

問題 No.1473 おでぶなおばけさん
ユーザー timitimi
提出日時 2021-04-26 16:07:43
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,042 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 544,828 KB
最終ジャッジ日時 2024-07-05 00:56:17
合計ジャッジ時間 26,214 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,392 KB
testcase_01 AC 44 ms
53,376 KB
testcase_02 AC 746 ms
122,624 KB
testcase_03 AC 626 ms
123,520 KB
testcase_04 AC 440 ms
104,576 KB
testcase_05 AC 260 ms
82,944 KB
testcase_06 AC 665 ms
118,912 KB
testcase_07 AC 808 ms
133,632 KB
testcase_08 AC 828 ms
132,352 KB
testcase_09 AC 785 ms
132,096 KB
testcase_10 AC 342 ms
90,240 KB
testcase_11 AC 331 ms
89,856 KB
testcase_12 AC 331 ms
89,728 KB
testcase_13 AC 228 ms
85,120 KB
testcase_14 AC 177 ms
81,152 KB
testcase_15 AC 304 ms
87,936 KB
testcase_16 AC 335 ms
91,776 KB
testcase_17 AC 70 ms
66,432 KB
testcase_18 AC 82 ms
70,784 KB
testcase_19 AC 381 ms
90,112 KB
testcase_20 AC 632 ms
114,560 KB
testcase_21 AC 564 ms
101,504 KB
testcase_22 AC 665 ms
117,504 KB
testcase_23 AC 635 ms
112,768 KB
testcase_24 AC 651 ms
112,384 KB
testcase_25 AC 749 ms
112,640 KB
testcase_26 AC 771 ms
114,944 KB
testcase_27 AC 286 ms
83,968 KB
testcase_28 AC 762 ms
133,504 KB
testcase_29 AC 615 ms
103,296 KB
testcase_30 AC 634 ms
107,904 KB
testcase_31 AC 739 ms
133,120 KB
testcase_32 AC 454 ms
120,192 KB
testcase_33 AC 414 ms
112,384 KB
testcase_34 AC 327 ms
96,256 KB
testcase_35 AC 278 ms
93,184 KB
testcase_36 AC 496 ms
103,808 KB
testcase_37 AC 562 ms
110,976 KB
testcase_38 AC 191 ms
80,000 KB
testcase_39 AC 323 ms
89,728 KB
testcase_40 AC 326 ms
89,984 KB
testcase_41 AC 338 ms
92,032 KB
testcase_42 AC 338 ms
92,288 KB
testcase_43 AC 198 ms
97,024 KB
testcase_44 AC 203 ms
96,512 KB
testcase_45 AC 201 ms
97,024 KB
testcase_46 MLE -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

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))
while d:
  now,pre,num=d.popleft()
  for nex in E[now]:
    if nex==N-1:
      print(answ,num+1)
      exit()
    if nex!=pre:
      d.append((nex,now,num+1))
0