結果
問題 | No.1639 最小通信路 |
ユーザー | DrDrpilot |
提出日時 | 2022-01-28 12:36:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 348 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-06-09 04:37:59 |
合計ジャッジ時間 | 4,276 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,496 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 102 ms
11,520 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 45 ms
10,880 KB |
testcase_06 | AC | 56 ms
11,008 KB |
testcase_07 | AC | 31 ms
10,496 KB |
testcase_08 | AC | 77 ms
11,136 KB |
testcase_09 | AC | 33 ms
10,624 KB |
testcase_10 | AC | 39 ms
10,624 KB |
testcase_11 | AC | 63 ms
11,136 KB |
testcase_12 | AC | 41 ms
10,624 KB |
testcase_13 | AC | 94 ms
11,520 KB |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 41 ms
10,752 KB |
testcase_16 | AC | 67 ms
11,136 KB |
testcase_17 | AC | 77 ms
11,520 KB |
testcase_18 | AC | 32 ms
10,752 KB |
testcase_19 | AC | 47 ms
10,880 KB |
testcase_20 | AC | 78 ms
11,264 KB |
testcase_21 | AC | 28 ms
10,496 KB |
testcase_22 | AC | 43 ms
10,880 KB |
testcase_23 | AC | 54 ms
11,008 KB |
testcase_24 | AC | 41 ms
10,624 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
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 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
from collections import deque n=int(input()) g=[[] for _ in range(n)] for _ in range(n*(n-1)//2): a,b,c=map(int,input().split()) a-=1;b-=1 g[a].append((b,c)) g[b].append((a,c)) def f(d): visit=[False]*n q=deque() q.append(0) while q: now=q.popleft() if visit[now]: continue visit[now]=True for to,cost in g[now]: if cost>d: continue if visit[to]: continue q.append(to) for i in visit: if i==False: return False return True r=10**20 l=0 while r-l>1: mid=(l+r)//2 if f(mid): r=mid else: l=mid print(r)