結果
問題 | No.2095 High Rise |
ユーザー | urutom |
提出日時 | 2022-10-16 10:06:06 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 120 ms / 2,000 ms |
コード長 | 1,130 bytes |
コンパイル時間 | 13,161 ms |
コンパイル使用メモリ | 221,024 KB |
実行使用メモリ | 6,144 KB |
最終ジャッジ日時 | 2024-06-27 07:03:56 |
合計ジャッジ時間 | 16,664 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" ) const MaxInt = math.MaxInt64 var scanner *bufio.Scanner func init() { scanner = bufio.NewScanner(os.Stdin) scanner.Buffer([]byte{}, MaxInt) scanner.Split(bufio.ScanWords) } func Int() int { var w string if scanner.Scan() { w = scanner.Text() } ret, _ := strconv.ParseInt(w, 10, 0) return int(ret) } func Min(a, b int) int { if a < b { return a } return b } func main() { n := Int() m := Int() a := make([]int, m) dp := make([]int, m) for j := 0; j < m; j++ { a[j] = Int() } if n == 1 { fmt.Println(0) return } b := make([]int, m) for j := 0; j < m; j++ { b[j] = Int() dp[j] = a[j] + b[j] } a = b for i := 2; i < n; i++ { k := 0 minVal := dp[0] for j := 1; j < m; j++ { if dp[j] < minVal { k = j minVal = dp[j] } } nextA := make([]int, m) nextDP := make([]int, m) for j := 0; j < m; j++ { nextA[j] = Int() nextDP[j] = nextA[j] + Min(dp[j], dp[k]+a[j]) } a = nextA dp = nextDP } ans := dp[0] for j := 1; j < m; j++ { if dp[j] < ans { ans = dp[j] } } fmt.Println(ans) }