結果

問題 No.1638 Robot Maze
ユーザー HimaHima
提出日時 2022-07-09 18:37:12
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 2,785 bytes
コンパイル時間 12,638 ms
コンパイル使用メモリ 212,024 KB
実行使用メモリ 5,524 KB
最終ジャッジ日時 2023-08-30 02:38:03
合計ジャッジ時間 14,236 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 4 ms
5,500 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
4,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
4,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 WA -
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 1 ms
4,380 KB
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 AC 2 ms
4,376 KB
testcase_44 AC 4 ms
5,500 KB
testcase_45 AC 5 ms
5,500 KB
testcase_46 AC 5 ms
5,500 KB
testcase_47 AC 1 ms
4,376 KB
testcase_48 WA -
testcase_49 AC 4 ms
5,500 KB
testcase_50 AC 2 ms
4,380 KB
testcase_51 AC 7 ms
5,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

var sc = bufio.NewScanner(os.Stdin)
var out = bufio.NewWriter(os.Stdout)

var p int
var dc []int
var dir = [][]int{{-1, 0}, {1, 0}, {0, 1}, {-1, 0}}

type Edge struct {
	i, j, c int
}

type PriorityQueue []Edge

func (pq PriorityQueue) Len() int {
	return len(pq)
}
func (pq PriorityQueue) Less(i, j int) bool {
	return pq[i].c < pq[j].c
}
func (pq PriorityQueue) Swap(i, j int) {
	pq[i], pq[j] = pq[j], pq[i]
}

func (pq *PriorityQueue) Push(item interface{}) {
	*pq = append(*pq, item.(Edge))
}

func (pq *PriorityQueue) Pop() interface{} {
	es := *pq // EdgeのSlice
	n := len(es)
	item := es[n-1]
	*pq = es[0 : n-1]
	return item
}

type Field struct {
	h, w int
	//e [][]Edge
	f []string
	c [][]int
}

func NewField(h, w int, f []string) *Field {
	const INF = 1 << 60
	c := make([][]int, h)
	for i := 0; i < h; i++ {
		c[i] = make([]int, w)
		for j := 0; j < w; j++ {
			c[i][j] = INF
		}
	}
	return &Field{h, w, f, c}
}

func (f *Field) Len() int {
	return f.h * f.w //len(this.E)
}

func (f *Field) Dijkstra(xs, ys, xt, yt int) {
	//n := this.Len()
	q := &PriorityQueue{}

	//TODO
	init := func(xs, ys int) {
		heap.Init(q)
		heap.Push(q, Edge{xs, ys, 0})
	}
	push := func(i, j, c, d int) {
		ni, nj := i+dir[d][0], j+dir[d][1]
		if ni < 0 || ni >= f.h || nj < 0 || nj >= f.w {
			return
		}
		if f.f[ni][nj] == '#' {
			return
		}
		var nc int
		if f.f[ni][nj] == '@' {
			nc += p
		}
		nc += dc[d]

		if f.c[ni][nj] > nc {
			f.c[ni][nj] = nc
			heap.Push(q, Edge{ni, nj, nc})
		}
	}

	init(xs, ys)
	for q.Len() > 0 {
		cur := heap.Pop(q).(Edge)
		//fmt.Println("cur", cur)
		if f.c[cur.i][cur.j] < cur.c {
			continue
		}
		//fmt.Println("Edge", this.E[cur.B])
		for k := 0; k < 4; k++ {
			push(cur.i, cur.j, cur.c, k)
		}
	}
}

func solve(h, w, u, d, r, l, k, p, xs, ys, xt, yt int, c []string) string {
	xs--
	ys--
	xt--
	yt--
	dc = append(dc, u)
	dc = append(dc, d)
	dc = append(dc, r)
	dc = append(dc, l)

	field := NewField(h, w, c)
	field.Dijkstra(xs, ys, xt, yt)

	if field.c[xt][yt] <= k {
		return "Yes"
	} else {
		return "No"
	}
}

func main() {
	buf := make([]byte, 1024*1024)
	sc.Buffer(buf, bufio.MaxScanTokenSize)
	sc.Split(bufio.ScanWords)

	h, w := nextInt(), nextInt()
	u, d, r, l, k := nextInt(), nextInt(), nextInt(), nextInt(), nextInt()
	p = nextInt()
	xs, ys, xt, yt := nextInt(), nextInt(), nextInt(), nextInt()
	c := make([]string, h)
	for i := 0; i < h; i++ {
		c[i] = nextString()
	}
	ans := solve(h, w, u, d, r, l, k, p, xs, ys, xt, yt, c)
	PrintString(ans)
}

func nextInt() int {
	sc.Scan()
	i, _ := strconv.Atoi(sc.Text())
	return i
}

func nextString() string {
	sc.Scan()
	return sc.Text()
}

func PrintString(x string) {
	defer out.Flush()
	fmt.Fprintln(out, x)
}
0