結果
問題 | No.1473 おでぶなおばけさん |
ユーザー | NoaSaber |
提出日時 | 2021-04-13 22:31:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,003 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 102,020 KB |
最終ジャッジ日時 | 2024-06-30 01:38:19 |
合計ジャッジ時間 | 21,616 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 47 ms
54,320 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 553 ms
95,612 KB |
testcase_08 | AC | 560 ms
96,188 KB |
testcase_09 | AC | 584 ms
95,836 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 573 ms
94,388 KB |
testcase_23 | AC | 506 ms
91,888 KB |
testcase_24 | AC | 489 ms
91,964 KB |
testcase_25 | AC | 553 ms
94,916 KB |
testcase_26 | AC | 555 ms
94,124 KB |
testcase_27 | AC | 207 ms
82,304 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 352 ms
88,120 KB |
testcase_37 | AC | 490 ms
91,340 KB |
testcase_38 | AC | 169 ms
79,728 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 158 ms
87,256 KB |
testcase_42 | AC | 156 ms
87,260 KB |
testcase_43 | AC | 543 ms
101,892 KB |
testcase_44 | AC | 540 ms
102,020 KB |
testcase_45 | AC | 551 ms
101,772 KB |
testcase_46 | AC | 222 ms
88,088 KB |
testcase_47 | AC | 275 ms
90,704 KB |
testcase_48 | AC | 280 ms
90,592 KB |
ソースコード
n,m=map(int,input().split()) edge=[[] for i in range(n)] for i in range(m): s,t,d=map(int,input().split()) s-=1;t-=1 edge[s].append((t,d*-1)) edge[t].append((s,d*-1)) from heapq import heappop,heappush def dijkstra(s,n,edge): inf=float("inf") ans=[inf]*n ans[s]=0 root=[0]*n open=[[-inf,s]] while open: cost,node=heappop(open) if ans[node]<cost: continue for next,e_cost in edge[node]: if max(cost,e_cost)<ans[next]: ans[next]=max(cost,e_cost) root[next]=root[node]+1 heappush(open,[max(cost,e_cost),next]) return ans[-1]*-1 border=dijkstra(0,n,edge) from collections import deque que=deque([(0,0)]) visited=[-1]*n while que: node,value=que.popleft() if visited[node]>=0: continue visited[node]=value for next,tmp in edge[node]: if border>=tmp and visited[next]==-1: que.append((next,value+1)) print(border,visited[-1])