結果
| 問題 |
No.848 なかよし旅行
|
| コンテスト | |
| ユーザー |
6soukiti29
|
| 提出日時 | 2019-07-07 12:15:06 |
| 言語 | Nim (2.2.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 2,656 bytes |
| コンパイル時間 | 925 ms |
| コンパイル使用メモリ | 66,316 KB |
| 最終ジャッジ日時 | 2024-11-14 21:30:03 |
| 合計ジャッジ時間 | 1,591 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(23, 25) Warning: Number of spaces around '<=' is not consistent [Spacing]
/home/judge/data/code/Main.nim(63, 39) Error: type mismatch: got 'seq[int]' for 'map(split(readLine(stdin), {' ', '\t', '\v', '\r', '\n', '\f'}, -1), parseInt)' but expected 'tuple'
ソースコード
import sequtils,strutils,math
type
priorityQue[I:static[int];T:tuple] = array[I + 1,T]
item = tuple[cost: int,ID : int]
var hyou : array[2001, array[2001, int]]
proc push[T](A:var priorityQue; b: T;)=
const key = 0
A[0][0] += 1
A[A[0][0]] = b # A[0][0]はsize、最大のIndex
var index = A[0][0]
while index > 1 and A[index][key] > A[index div 2][key]:
(A[index],A[index div 2]) = (A[index div 2],A[index])
index = index div 2
proc pop(A: var priorityQue):item =
const key = 0
result = A[1]
A[1] = A[A[0][0]]
var a : item
A[A[0][0]] = a
A[0][0] -= 1
var index = 1
while index * 2 <= A[0][0]:
if index * 2 + 1<= A[0][0]:
if A[index][key] < A[index * 2][key] and A[index * 2 + 1][key] <= A[index * 2][key]:
(A[index],A[index * 2]) = (A[index * 2],A[index])
index = index * 2
elif A[index][key] < A[index * 2 + 1][key]:
(A[index],A[index * 2 + 1]) = (A[index * 2 + 1],A[index])
index = index * 2 + 1
else:
break
elif index * 2 <= A[0][0]:
if A[index][key] < A[index * 2][key]:
(A[index],A[index * 2]) = (A[index * 2],A[index])
break
else:
break
proc size(A : priorityQue):int=
return A[0][0]
var pq : priorityQue[201000, item]
proc dijikstra(i : int) : seq[int]=
var res = newSeq[int](2001) #N_maxに書き換える
for i in 0..2000:
res[i] = int.high
pq.push((0, i))
while pq.size > 0 :
var a = pq.pop
if res[a.ID] != int.high:
continue
res[a.ID] = - a.cost
for np, c in hyou[a.ID]: #表がN * N の時
if c < int.high and res[np] == int.high:
pq.push((a.cost - c, np))
#[for edge in hyou[a.ID]: #表が隣接表示 hyou = array[tuple[to, cost : int]]
if res[edge.to] == int.high:
pq.push((a.cost - edge.cost, edge.to))]#
return res
var
N,M,P,Q,T : int
a,b,c : int
(N, M, P, Q, T) = stdin.readline.split.map(parseInt)
for i in 0..2000:
for j in 0..2000:
hyou[i][j] = int.high
for i in 1..M:
(a, b, c) = stdin.readline.split.map(parseInt)
hyou[a][b] = c
hyou[b][a] = c
var
cos1 = dijikstra(1)
cosQ = dijikstra(Q)
cosP = dijikstra(P)
ans = -1
for i in 1..N:
for j in 1..N:
if cos1[i] + max(cosQ[i] + cosQ[j], cosP[i] + cosP[j]) + cos1[j] <= T:
ans = max(ans, T - max(cosQ[i] + cosQ[j], cosP[i] + cosP[j]))
if cos1[P] + cos1[Q] + cosP[Q] <= T:
ans = T
echo ans
6soukiti29