結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | ゆるく |
提出日時 | 2015-02-21 01:21:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 756 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 19,228 KB |
最終ジャッジ日時 | 2024-06-23 21:32:35 |
合計ジャッジ時間 | 7,178 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
11,776 KB |
testcase_01 | AC | 37 ms
11,776 KB |
testcase_02 | AC | 39 ms
11,776 KB |
testcase_03 | AC | 308 ms
12,032 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
import sys #sys.setrecursionlimit(n) import heapq import re import bisect import random import math import itertools from collections import defaultdict, deque from copy import deepcopy from decimal import * n = int(input()) t = [int(input()) for i in range(n)] m = int(input()) e = [[int(i) for i in input().split()] for i in range(m)] l = [[0xFFFF for _ in range(m + 1)] for _ in range(m + 1)] for ee in e: l[ee[0]][ee[1]] = ee[2] l[ee[1]][ee[0]] = ee[2] size = len(l) for k in range(size): for i in range(size): for j in range(size): l[i][j] = min(l[i][j], l[i][k] + l[k][j]) mn = 0xFFFF for i in range(1, n - 1): for j in range(1, n - 1): if i != j: mn = min(mn, t[i] + t[j] + l[0][i] + l[i][j] + l[j][n - 1]) print(mn)