結果

問題 No.971 いたずらっ子
ユーザー tentententen
提出日時 2022-08-30 10:31:22
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,257 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 78,520 KB
実行使用メモリ 83,008 KB
最終ジャッジ日時 2024-11-07 11:51:53
合計ジャッジ時間 20,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1,713 ms
68,008 KB
testcase_03 AC 1,657 ms
81,908 KB
testcase_04 AC 1,586 ms
79,748 KB
testcase_05 AC 1,608 ms
82,252 KB
testcase_06 AC 1,313 ms
72,956 KB
testcase_07 AC 120 ms
40,552 KB
testcase_08 AC 597 ms
51,596 KB
testcase_09 AC 580 ms
51,548 KB
testcase_10 AC 105 ms
40,360 KB
testcase_11 AC 52 ms
36,724 KB
testcase_12 AC 53 ms
37,220 KB
testcase_13 AC 53 ms
36,684 KB
testcase_14 AC 92 ms
38,344 KB
testcase_15 AC 53 ms
36,840 KB
testcase_16 AC 54 ms
36,840 KB
testcase_17 AC 52 ms
36,712 KB
testcase_18 AC 50 ms
36,904 KB
testcase_19 AC 52 ms
37,132 KB
testcase_20 AC 52 ms
37,216 KB
testcase_21 AC 54 ms
37,196 KB
testcase_22 AC 54 ms
36,968 KB
testcase_23 AC 54 ms
37,100 KB
testcase_24 AC 54 ms
36,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int h = sc.nextInt();
        int w = sc.nextInt();
        char[][] field = new char[h][];
        for (int i = 0; i < h; i++) {
            field[i] = sc.next().toCharArray();
        }
        int[][] costs = new int[h][w];
        for (int[] arr : costs) {
            Arrays.fill(arr, Integer.MAX_VALUE);
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0, 0));
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (field[p.r][p.c] == 'k') {
                p.value += p.r + p.c;
            }
            if (costs[p.r][p.c] <= p.value) {
                continue;
            }
            costs[p.r][p.c] = p.value;
            if (p.r < h - 1) {
                queue.add(new Path(p.r + 1, p.c, p.value + 1));
            }
            if (p.c < w - 1) {
                queue.add(new Path(p.r, p.c + 1, p.value + 1));
            }
        }
        System.out.println(costs[h - 1][w - 1]);
    }
    
    static class Path implements Comparable<Path> {
        int r;
        int c;
        int value;
        
        public Path(int r, int c, int value) {
            this.r = r;
            this.c = c;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0