結果
問題 | No.1077 Noelちゃんと星々4 |
ユーザー | c-yan |
提出日時 | 2020-06-15 00:23:07 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,376 bytes |
コンパイル時間 | 13,790 ms |
コンパイル使用メモリ | 233,036 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 04:00:38 |
合計ジャッジ時間 | 14,823 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" ) func min(a, b int) int { if a < b { return a } return b } func abs(a int) int { if a < 0 { return -a } return a } func main() { defer flush() N := readInt() Y := make([]int, N) for i := 0; i < N; i++ { Y[i] = readInt() } dp := make([][]int, N) for i := 0; i < N; i++ { dp[i] = make([]int, 10000+1) } for i := 0; i < N; i++ { t := math.MaxInt64 for j := 0; j < 10000+1; j++ { t = min(t, dp[i-1][j]) dp[i][j] = t + abs(Y[i]-j) } } result := math.MaxInt64 for j := 0; j < 10000+1; j++ { result = min(result, dp[N-1][j]) } println(result) } const ( ioBufferSize = 1 * 1024 * 1024 // 1 MB ) var stdinScanner = func() *bufio.Scanner { result := bufio.NewScanner(os.Stdin) result.Buffer(make([]byte, ioBufferSize), ioBufferSize) result.Split(bufio.ScanWords) return result }() func readString() string { stdinScanner.Scan() return stdinScanner.Text() } func readInt() int { result, err := strconv.Atoi(readString()) if err != nil { panic(err) } return result } var stdoutWriter = bufio.NewWriter(os.Stdout) func flush() { stdoutWriter.Flush() } func printf(f string, args ...interface{}) (int, error) { return fmt.Fprintf(stdoutWriter, f, args...) } func println(args ...interface{}) (int, error) { return fmt.Fprintln(stdoutWriter, args...) }