結果
問題 | No.1283 Extra Fee |
ユーザー | aru aru |
提出日時 | 2021-01-27 20:40:47 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 804 ms / 2,000 ms |
コード長 | 3,252 bytes |
コンパイル時間 | 11,718 ms |
コンパイル使用メモリ | 220,992 KB |
実行使用メモリ | 22,752 KB |
最終ジャッジ日時 | 2024-11-16 07:17:48 |
合計ジャッジ時間 | 18,165 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 38 ms
7,708 KB |
testcase_12 | AC | 56 ms
7,840 KB |
testcase_13 | AC | 15 ms
6,820 KB |
testcase_14 | AC | 56 ms
7,948 KB |
testcase_15 | AC | 93 ms
8,068 KB |
testcase_16 | AC | 18 ms
6,816 KB |
testcase_17 | AC | 404 ms
22,708 KB |
testcase_18 | AC | 804 ms
18,592 KB |
testcase_19 | AC | 313 ms
16,504 KB |
testcase_20 | AC | 297 ms
16,372 KB |
testcase_21 | AC | 330 ms
16,508 KB |
testcase_22 | AC | 268 ms
16,324 KB |
testcase_23 | AC | 188 ms
16,380 KB |
testcase_24 | AC | 205 ms
16,384 KB |
testcase_25 | AC | 346 ms
16,504 KB |
testcase_26 | AC | 331 ms
16,512 KB |
testcase_27 | AC | 323 ms
16,520 KB |
testcase_28 | AC | 331 ms
18,592 KB |
testcase_29 | AC | 562 ms
22,752 KB |
ソースコード
package main import ( "bufio" "container/heap" "fmt" "math" "os" "sort" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var wr = bufio.NewWriter(os.Stdout) func out(x ...interface{}) { fmt.Fprintln(wr, x...) } func getI() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getF() float64 { sc.Scan() i, e := strconv.ParseFloat(sc.Text(), 64) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getI() } return ret } func getS() string { sc.Scan() return sc.Text() } // min, max, asub, absなど基本関数 func max(a, b int) int { if a > b { return a } return b } func min(a, b int) int { if a < b { return a } return b } // min for n entry func nmin(a ...int) int { ret := a[0] for _, e := range a { ret = min(ret, e) } return ret } // max for n entry func nmax(a ...int) int { ret := a[0] for _, e := range a { ret = max(ret, e) } return ret } func asub(a, b int) int { if a > b { return a - b } return b - a } func abs(a int) int { if a >= 0 { return a } return -a } func lowerBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] >= x }) return idx } func upperBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] > x }) return idx } type pqi struct{ a, x, y, t int } type priorityQueue []pqi func (pq priorityQueue) Len() int { return len(pq) } func (pq priorityQueue) Swap(i, j int) { pq[i], pq[j] = pq[j], pq[i] } func (pq priorityQueue) Less(i, j int) bool { return pq[i].a < pq[j].a } func (pq *priorityQueue) Push(x interface{}) { *pq = append(*pq, x.(pqi)) } func (pq *priorityQueue) Pop() interface{} { x := (*pq)[len(*pq)-1] *pq = (*pq)[0 : len(*pq)-1] return x } const inf = int(1e18) func main() { defer wr.Flush() sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, math.MaxInt32) // this template is new version. // use getI(), getS(), getInts(), getF() N, M := getI(), getI() a := make([][]int, N) for i := 0; i < N; i++ { a[i] = make([]int, N) } for i := 0; i < M; i++ { h, w, c := getI()-1, getI()-1, getI() a[h][w] = c } d := make([][][2]int, N) for i := 0; i < N; i++ { d[i] = make([][2]int, N) for j := 0; j < N; j++ { d[i][j][0] = inf d[i][j][1] = inf } } dx := []int{-1, 1, 0, 0} dy := []int{0, 0, -1, 1} pq := priorityQueue{} heap.Push(&pq, pqi{0, 0, 0, 0}) d[0][0][0] = 0 for len(pq) != 0 { cur := pq[0] heap.Pop(&pq) for i := 0; i < 4; i++ { px := cur.x + dx[i] py := cur.y + dy[i] if px < 0 || px >= N || py < 0 || py >= N { continue } if cur.t == 0 && a[py][px] != 0 { if d[py][px][1] > d[cur.y][cur.x][cur.t]+1 { d[py][px][1] = d[cur.y][cur.x][cur.t] + 1 heap.Push(&pq, pqi{d[py][px][1], px, py, 1}) } } if d[py][px][cur.t] > d[cur.y][cur.x][cur.t]+a[py][px]+1 { d[py][px][cur.t] = d[cur.y][cur.x][cur.t] + a[py][px] + 1 heap.Push(&pq, pqi{d[py][px][1], px, py, cur.t}) } } } // for i := 0; i < N; i++ { // out(a[i]) // } // out("-----") // for i := 0; i < N; i++ { // out(d[i]) // } out(min(d[N-1][N-1][0], d[N-1][N-1][1])) }