結果

問題 No.1473 おでぶなおばけさん
ユーザー timitimi
提出日時 2021-04-26 16:03:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 977 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,808 KB
最終ジャッジ日時 2024-07-05 00:51:40
合計ジャッジ時間 31,626 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,952 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 1,082 ms
47,996 KB
testcase_03 AC 859 ms
40,424 KB
testcase_04 AC 469 ms
30,400 KB
testcase_05 AC 161 ms
17,792 KB
testcase_06 AC 784 ms
41,496 KB
testcase_07 AC 977 ms
47,688 KB
testcase_08 AC 1,091 ms
47,684 KB
testcase_09 AC 991 ms
47,812 KB
testcase_10 AC 491 ms
25,468 KB
testcase_11 AC 497 ms
24,280 KB
testcase_12 AC 504 ms
26,016 KB
testcase_13 AC 315 ms
18,724 KB
testcase_14 AC 230 ms
16,640 KB
testcase_15 AC 429 ms
21,796 KB
testcase_16 AC 480 ms
24,996 KB
testcase_17 AC 60 ms
11,648 KB
testcase_18 AC 79 ms
12,288 KB
testcase_19 AC 429 ms
25,776 KB
testcase_20 AC 922 ms
37,876 KB
testcase_21 AC 666 ms
36,408 KB
testcase_22 AC 855 ms
42,148 KB
testcase_23 AC 893 ms
38,248 KB
testcase_24 AC 769 ms
38,932 KB
testcase_25 AC 866 ms
43,596 KB
testcase_26 AC 861 ms
42,468 KB
testcase_27 AC 362 ms
24,688 KB
testcase_28 AC 1,041 ms
46,916 KB
testcase_29 AC 570 ms
32,696 KB
testcase_30 AC 686 ms
36,016 KB
testcase_31 AC 990 ms
49,556 KB
testcase_32 AC 680 ms
42,296 KB
testcase_33 AC 625 ms
38,384 KB
testcase_34 AC 278 ms
24,440 KB
testcase_35 AC 301 ms
24,704 KB
testcase_36 AC 872 ms
50,808 KB
testcase_37 AC 637 ms
36,656 KB
testcase_38 AC 144 ms
15,856 KB
testcase_39 AC 472 ms
25,336 KB
testcase_40 AC 476 ms
25,460 KB
testcase_41 AC 455 ms
22,756 KB
testcase_42 AC 467 ms
22,760 KB
testcase_43 AC 501 ms
36,260 KB
testcase_44 AC 501 ms
36,260 KB
testcase_45 AC 509 ms
36,172 KB
testcase_46 TLE -
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)] 
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