結果

問題 No.848 なかよし旅行
ユーザー ccppjsrbccppjsrb
提出日時 2020-08-17 00:30:00
言語 Go
(1.22.1)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 3,244 bytes
コンパイル時間 11,440 ms
コンパイル使用メモリ 237,784 KB
実行使用メモリ 32,148 KB
最終ジャッジ日時 2024-04-25 14:19:03
合計ジャッジ時間 15,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
29,168 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 93 ms
14,184 KB
testcase_12 AC 130 ms
16,368 KB
testcase_13 AC 193 ms
20,408 KB
testcase_14 AC 44 ms
7,836 KB
testcase_15 AC 178 ms
22,520 KB
testcase_16 AC 352 ms
32,148 KB
testcase_17 AC 201 ms
24,608 KB
testcase_18 AC 86 ms
14,320 KB
testcase_19 AC 71 ms
12,144 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 261 ms
26,656 KB
testcase_22 AC 324 ms
26,568 KB
testcase_23 AC 35 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 327 ms
26,636 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"container/heap"
	"fmt"
	"math"
	"os"
	"strconv"
)

func configure(scanner *bufio.Scanner) {
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
}
func getNextString(scanner *bufio.Scanner) string {
	scanned := scanner.Scan()
	if !scanned {
		panic("scan failed")
	}
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	extra := 0
	if os.Getenv("I") == "IronMan" {
		fp, _ = os.Open(os.Getenv("END_GAME"))
		extra = 100
	}
	scanner := bufio.NewScanner(fp)
	configure(scanner)
	writer := bufio.NewWriter(wfp)
	defer func() {
		r := recover()
		if r != nil {
			fmt.Fprintln(writer, r)
		}
		writer.Flush()
	}()
	solve(scanner, writer)
	for i := 0; i < extra; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	m := getNextInt(scanner)
	p := getNextInt(scanner) - 1
	q := getNextInt(scanner) - 1
	t := getNextInt64(scanner)
	g := newGraph(n)
	for i := 0; i < m; i++ {
		a := getNextInt(scanner) - 1
		b := getNextInt(scanner) - 1
		c := getNextInt64(scanner)
		g.appendEdge(a, b, i, c)
		g.appendEdge(b, a, i, c)
	}
	var ans int64
	ans = -1
	g.daike(0)
	g.daike(p)
	g.daike(q)
	for i := 0; i < n; i++ {
		for j := 0; j < n; j++ {
			together := g.v[0].dd[i] + g.v[0].dd[j]
			mohu := g.v[p].dd[i] + g.v[p].dd[j]
			mohumohu := g.v[q].dd[i] + g.v[q].dd[j]
			if together+max(mohu, mohumohu) > t {
				continue
			}
			if i == p {
				ans = t
				break
			}
			if ans < t-max(mohu, mohumohu) {
				ans = t - max(mohu, mohumohu)
			}
		}
	}
	fmt.Fprintln(writer, ans)
}

type daike struct {
	i int
	c int64
}
type daikes []daike

func (h daikes) Len() int { return len(h) }
func (h daikes) Less(i, j int) bool {
	return h[i].c < h[j].c
}
func (h daikes) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
func (h *daikes) Push(x interface{}) {
	*h = append(*h, x.(daike))
}
func (h *daikes) Pop() interface{} {
	old := *h
	n := len(old)
	x := old[n-1]
	*h = old[0 : n-1]
	return x
}

type vertex struct {
	dd []int64
}
type edge struct {
	to, id int
	c      int64
}
type graph struct {
	v []vertex
	e [][]edge
}

func newGraph(n int) graph {
	return graph{
		v: make([]vertex, n),
		e: make([][]edge, n),
	}
}
func (g *graph) appendEdge(from, to, id int, c int64) {
	g.e[from] = append(g.e[from], edge{
		to: to,
		id: id,
		c:  c,
	})
}
func (g *graph) daike(s int) {
	dd := &daikes{}
	n := len(g.v)
	g.v[s].dd = make([]int64, n)
	for i := 0; i < n; i++ {
		g.v[s].dd[i] = math.MaxInt64
	}
	heap.Push(dd, daike{i: s, c: 0})
	for dd.Len() > 0 {
		p := heap.Pop(dd).(daike)
		if g.v[s].dd[p.i] <= p.c {
			continue
		}
		g.v[s].dd[p.i] = p.c
		for _, e := range g.e[p.i] {
			heap.Push(dd, daike{i: e.to, c: e.c + p.c})
		}
	}
}

func max(a, b int64) int64 {
	if a < b {
		return b
	}
	return a
}
0