結果
問題 | No.402 最も海から遠い場所 |
ユーザー | yoza |
提出日時 | 2016-07-23 00:39:42 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 138 ms / 3,000 ms |
コード長 | 766 bytes |
コンパイル時間 | 13,691 ms |
コンパイル使用メモリ | 224,188 KB |
実行使用メモリ | 84,500 KB |
最終ジャッジ日時 | 2024-11-06 12:52:57 |
合計ジャッジ時間 | 14,911 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 5 ms
6,816 KB |
testcase_16 | AC | 6 ms
6,816 KB |
testcase_17 | AC | 78 ms
43,088 KB |
testcase_18 | AC | 138 ms
84,500 KB |
testcase_19 | AC | 25 ms
23,128 KB |
testcase_20 | AC | 138 ms
84,500 KB |
testcase_21 | AC | 121 ms
84,496 KB |
ソースコード
package main import ( "bufio" "fmt" "math" "os" ) func main() { var h, w int fmt.Scanf("%d %d", &h, &w) dp := [][]int{} for i := 0; i <= h; i++ { dp = append(dp, make([]int, w+1)) } max := 0 sc := bufio.NewScanner(os.Stdin) for y := 1; y <= h; y++ { sc.Scan() row := sc.Text() for x := 1; x <= w; x++ { if row[x-1:x] == "." { continue } dp[y][x] = minInt(dp[y-1][x-1], dp[y-1][x], dp[y][x-1]) + 1 max = maxInt(max, dp[y][x]) } } fmt.Println((max + 1) / 2) } func maxInt(list ...int) int { max := int(math.MinInt64) for _, i := range list { if i > max { max = i } } return max } func minInt(list ...int) int { min := int(math.MaxInt64) for _, i := range list { if i < min { min = i } } return min }