結果

問題 No.1473 おでぶなおばけさん
ユーザー timitimi
提出日時 2021-04-26 15:55:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 921 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 546,624 KB
最終ジャッジ日時 2024-07-05 00:42:17
合計ジャッジ時間 26,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,496 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 794 ms
122,452 KB
testcase_03 AC 670 ms
123,616 KB
testcase_04 AC 486 ms
105,696 KB
testcase_05 AC 266 ms
83,184 KB
testcase_06 AC 708 ms
119,132 KB
testcase_07 AC 872 ms
136,824 KB
testcase_08 AC 869 ms
134,412 KB
testcase_09 AC 838 ms
135,232 KB
testcase_10 AC 366 ms
89,824 KB
testcase_11 AC 372 ms
90,108 KB
testcase_12 AC 376 ms
89,868 KB
testcase_13 AC 255 ms
85,736 KB
testcase_14 AC 191 ms
82,048 KB
testcase_15 AC 347 ms
90,976 KB
testcase_16 AC 373 ms
89,460 KB
testcase_17 AC 82 ms
77,184 KB
testcase_18 AC 92 ms
76,800 KB
testcase_19 AC 429 ms
89,852 KB
testcase_20 AC 676 ms
114,676 KB
testcase_21 AC 613 ms
103,292 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 645 ms
116,176 KB
testcase_27 WA -
testcase_28 AC 824 ms
133,972 KB
testcase_29 WA -
testcase_30 AC 649 ms
108,560 KB
testcase_31 AC 704 ms
133,212 KB
testcase_32 AC 494 ms
118,132 KB
testcase_33 AC 462 ms
111,248 KB
testcase_34 AC 339 ms
95,016 KB
testcase_35 AC 308 ms
92,132 KB
testcase_36 WA -
testcase_37 AC 597 ms
111,504 KB
testcase_38 WA -
testcase_39 AC 383 ms
90,348 KB
testcase_40 AC 383 ms
90,344 KB
testcase_41 AC 377 ms
90,204 KB
testcase_42 AC 381 ms
90,080 KB
testcase_43 AC 236 ms
96,808 KB
testcase_44 AC 233 ms
96,736 KB
testcase_45 AC 233 ms
96,932 KB
testcase_46 MLE -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)] 
for d,s,t in D:
  s-=1
  t-=1
  union(s,t)
  E[s].append(t)
  E[t].append(s)
  if same(0,N-1):
    answ=d
    break
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