結果
問題 | No.971 いたずらっ子 |
ユーザー | ccppjsrb |
提出日時 | 2020-06-03 23:21:23 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 92 ms / 2,000 ms |
コード長 | 2,120 bytes |
コンパイル時間 | 16,184 ms |
コンパイル使用メモリ | 223,220 KB |
実行使用メモリ | 38,272 KB |
最終ジャッジ日時 | 2024-11-07 11:45:36 |
合計ジャッジ時間 | 18,117 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 92 ms
38,272 KB |
testcase_01 | AC | 92 ms
38,272 KB |
testcase_02 | AC | 71 ms
29,568 KB |
testcase_03 | AC | 71 ms
38,272 KB |
testcase_04 | AC | 67 ms
36,224 KB |
testcase_05 | AC | 72 ms
38,272 KB |
testcase_06 | AC | 57 ms
30,336 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 21 ms
11,904 KB |
testcase_09 | AC | 19 ms
11,520 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" ) func getScanner(fp *os.File) *bufio.Scanner { scanner := bufio.NewScanner(fp) scanner.Split(bufio.ScanWords) scanner.Buffer(make([]byte, 1000005), 1000005) return scanner } func getNextString(scanner *bufio.Scanner) string { scanner.Scan() return scanner.Text() } func getNextInt(scanner *bufio.Scanner) int { i, _ := strconv.Atoi(getNextString(scanner)) return i } func getNextInt64(scanner *bufio.Scanner) int64 { i, _ := strconv.ParseInt(getNextString(scanner), 10, 64) return i } func getNextUint64(scanner *bufio.Scanner) uint64 { i, _ := strconv.ParseUint(getNextString(scanner), 10, 64) return i } func getNextFloat64(scanner *bufio.Scanner) float64 { i, _ := strconv.ParseFloat(getNextString(scanner), 64) return i } func main() { fp := os.Stdin wfp := os.Stdout cnt := 0 if os.Getenv("MASPY") == "ますピ" { fp, _ = os.Open(os.Getenv("BEET_THE_HARMONY_OF_PERFECT")) cnt = 3 } if os.Getenv("MASPYPY") == "ますピッピ" { wfp, _ = os.Create(os.Getenv("NGTKANA_IS_GENIUS10")) } scanner := getScanner(fp) writer := bufio.NewWriter(wfp) solve(scanner, writer) for i := 0; i < cnt; i++ { fmt.Fprintln(writer, "-----------------------------------") solve(scanner, writer) } writer.Flush() } func solve(scanner *bufio.Scanner, writer *bufio.Writer) { h := getNextInt(scanner) w := getNextInt(scanner) aa := make([]string, h) for i := 0; i < h; i++ { aa[i] = getNextString(scanner) } dp := makeGrid(h, w) for i := 0; i < h; i++ { for j := 0; j < w; j++ { dp[i][j] = math.MaxInt32 } } dp[0][0] = 0 for i := 0; i < h; i++ { for j := 0; j < w; j++ { cost := 1 if aa[i][j] == 'k' { cost += i + j } if j > 0 && dp[i][j-1]+cost < dp[i][j] { dp[i][j] = dp[i][j-1] + cost } if i > 0 && dp[i-1][j]+cost < dp[i][j] { dp[i][j] = dp[i-1][j] + cost } } } fmt.Fprintln(writer, dp[h-1][w-1]) } func makeGrid(h, w int) [][]int { index := make([][]int, h, h) data := make([]int, h*w, h*w) for i := 0; i < h; i++ { index[i] = data[i*w : (i+1)*w] } return index }