結果
問題 | No.402 最も海から遠い場所 |
ユーザー | AreTrash |
提出日時 | 2016-05-22 13:04:37 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 1,153 ms / 3,000 ms |
コード長 | 1,309 bytes |
コンパイル時間 | 2,757 ms |
コンパイル使用メモリ | 77,392 KB |
実行使用メモリ | 119,592 KB |
最終ジャッジ日時 | 2024-11-06 09:53:49 |
合計ジャッジ時間 | 12,283 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
54,048 KB |
testcase_01 | AC | 137 ms
54,372 KB |
testcase_02 | AC | 147 ms
54,232 KB |
testcase_03 | AC | 135 ms
53,900 KB |
testcase_04 | AC | 137 ms
53,984 KB |
testcase_05 | AC | 135 ms
54,188 KB |
testcase_06 | AC | 139 ms
54,472 KB |
testcase_07 | AC | 125 ms
52,904 KB |
testcase_08 | AC | 140 ms
54,204 KB |
testcase_09 | AC | 138 ms
54,248 KB |
testcase_10 | AC | 137 ms
54,256 KB |
testcase_11 | AC | 143 ms
53,944 KB |
testcase_12 | AC | 142 ms
53,980 KB |
testcase_13 | AC | 193 ms
54,272 KB |
testcase_14 | AC | 176 ms
54,256 KB |
testcase_15 | AC | 299 ms
57,348 KB |
testcase_16 | AC | 366 ms
57,436 KB |
testcase_17 | AC | 751 ms
79,908 KB |
testcase_18 | AC | 1,135 ms
119,304 KB |
testcase_19 | AC | 1,129 ms
119,592 KB |
testcase_20 | AC | 1,153 ms
119,588 KB |
testcase_21 | AC | 1,144 ms
119,500 KB |
ソースコード
import java.util.Scanner; class Yuki2_1{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int H = sc.nextInt(); int W = sc.nextInt(); int map[][] = new int[H + 2][W + 2]; for(int i = 1; i <= H; i++){ String input = sc.next(); for(int j = 1; j <= W; j++){ if(input.charAt(j - 1) == '#') map[i][j] = 1510; } } for(int i = 1; i <= H; i++){ for(int j = 1; j <= W; j++){ map[i][j] = min4(map[i][j], map[i - 1][j] + 1, map[i][j - 1] + 1, map[i - 1][j - 1] + 1); } } for(int i = H; i >= 1; i--){ for(int j = 1; j <= W; j++){ map[i][j] = min4(map[i][j], map[i + 1][j] + 1, map[i][j - 1] + 1, map[i + 1][j - 1] + 1); } } for(int i = 1; i <= H; i++){ for(int j = W; j >= 1; j--){ map[i][j] = min4(map[i][j], map[i - 1][j] + 1, map[i][j + 1] + 1, map[i - 1][j + 1] + 1); } } for(int i = H; i >= 1; i--){ for(int j = W; j >= 1; j--){ map[i][j] = min4(map[i][j], map[i + 1][j] + 1, map[i][j + 1] + 1, map[i + 1][j + 1] + 1); } } int max = 0; for(int i = 1; i <= H; i++){ for(int j = 1; j <= W; j++){ max = Math.max(max, map[i][j]); } } System.out.println(max); } public static int min4(int a1, int a2, int a3, int a4){ return Math.min(a1, Math.min(a2, Math.min(a3, a4))); } }