結果
問題 | No.1077 Noelちゃんと星々4 |
ユーザー | c-yan |
提出日時 | 2020-06-21 10:48:37 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 1,439 bytes |
コンパイル時間 | 16,981 ms |
コンパイル使用メモリ | 224,864 KB |
実行使用メモリ | 82,304 KB |
最終ジャッジ日時 | 2024-07-03 17:53:08 |
合計ジャッジ時間 | 12,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 30 ms
56,960 KB |
testcase_03 | AC | 38 ms
73,344 KB |
testcase_04 | AC | 14 ms
23,296 KB |
testcase_05 | AC | 11 ms
17,920 KB |
testcase_06 | AC | 16 ms
29,824 KB |
testcase_07 | AC | 19 ms
34,176 KB |
testcase_08 | AC | 15 ms
25,216 KB |
testcase_09 | AC | 13 ms
21,888 KB |
testcase_10 | AC | 38 ms
73,472 KB |
testcase_11 | AC | 26 ms
48,128 KB |
testcase_12 | AC | 22 ms
39,936 KB |
testcase_13 | AC | 10 ms
17,024 KB |
testcase_14 | AC | 37 ms
71,808 KB |
testcase_15 | AC | 21 ms
38,656 KB |
testcase_16 | AC | 15 ms
25,856 KB |
testcase_17 | AC | 24 ms
43,648 KB |
testcase_18 | AC | 38 ms
74,752 KB |
testcase_19 | AC | 9 ms
16,384 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 42 ms
82,304 KB |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" ) func min(x, y int) int { if x < y { return x } return y } func abs(x int) int { if x < 0 { return -x } return x } 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 j := 0; j < 10000+1; j++ { dp[0][j] = abs(Y[0] - j) } for i := 1; 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...) }