結果

問題 No.402 最も海から遠い場所
ユーザー jp_stejp_ste
提出日時 2016-08-12 20:42:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 900 ms / 3,000 ms
コード長 1,522 bytes
コンパイル時間 3,686 ms
コンパイル使用メモリ 78,432 KB
実行使用メモリ 118,968 KB
最終ジャッジ日時 2024-11-07 12:15:19
合計ジャッジ時間 11,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,752 KB
testcase_01 AC 124 ms
41,328 KB
testcase_02 AC 130 ms
41,344 KB
testcase_03 AC 108 ms
40,236 KB
testcase_04 AC 120 ms
41,280 KB
testcase_05 AC 122 ms
41,564 KB
testcase_06 AC 109 ms
39,872 KB
testcase_07 AC 122 ms
41,428 KB
testcase_08 AC 115 ms
41,400 KB
testcase_09 AC 108 ms
40,164 KB
testcase_10 AC 127 ms
41,512 KB
testcase_11 AC 123 ms
41,828 KB
testcase_12 AC 111 ms
40,172 KB
testcase_13 AC 176 ms
41,880 KB
testcase_14 AC 151 ms
41,660 KB
testcase_15 AC 257 ms
44,892 KB
testcase_16 AC 347 ms
49,096 KB
testcase_17 AC 669 ms
83,104 KB
testcase_18 AC 898 ms
118,920 KB
testcase_19 AC 751 ms
118,720 KB
testcase_20 AC 900 ms
118,724 KB
testcase_21 AC 842 ms
118,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main2 {
    static Scanner scan = new Scanner(System.in);
    static PrintWriter out = new PrintWriter(System.out);

    static int H, W;
    static char[][] map;
    static int [][] ansMap;
    
    static int[] dx = {-1, -1, 0};
    static int[] dy = {0, -1, -1};
    
    public static void main(String[] args) {
        
        String line = scan.nextLine();
        String values[] = line.split(" ");
        H = Integer.parseInt(values[0]);
        W = Integer.parseInt(values[1]);;
        
        map = new char[H][W];
        ansMap = new int[H][W];
        int ans = 0;
        
        for(int i=0; i<H; i++) {
            line = scan.nextLine();
            for(int j=0; j<W; j++) {
                map[i][j] = line.charAt(j);
                if((i==0 || j==0) && map[i][j] == '#') { 
                    ansMap[i][j] = 1;
                    ans = 1;
                }
            }
        }
        
        for(int i=1; i<H; i++) {
            for(int j=1; j<W; j++) {
                if(map[i][j] == '.') continue;
                    
                int v = Integer.MAX_VALUE;
                for(int k=0; k<dx.length; k++) {
                    int nx = j + dx[k];
                    int ny = i + dy[k];
                    v = Math.min(v, ansMap[ny][nx]+1);
                }
                ansMap[i][j] = v;
                ans = Math.max(ans, v);
            }
        }
        
        System.out.println((ans+1)/2);
    }
}
0