結果
問題 | No.1077 Noelちゃんと星々4 |
ユーザー | ccppjsrb |
提出日時 | 2020-06-12 21:54:48 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 2,283 bytes |
コンパイル時間 | 14,929 ms |
コンパイル使用メモリ | 224,968 KB |
実行使用メモリ | 81,448 KB |
最終ジャッジ日時 | 2024-06-24 04:55:51 |
合計ジャッジ時間 | 16,328 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 40 ms
56,840 KB |
testcase_03 | AC | 50 ms
73,252 KB |
testcase_04 | AC | 17 ms
24,024 KB |
testcase_05 | AC | 13 ms
19,796 KB |
testcase_06 | AC | 22 ms
30,172 KB |
testcase_07 | AC | 25 ms
36,320 KB |
testcase_08 | AC | 18 ms
26,072 KB |
testcase_09 | AC | 16 ms
24,024 KB |
testcase_10 | AC | 51 ms
73,248 KB |
testcase_11 | AC | 34 ms
48,640 KB |
testcase_12 | AC | 28 ms
40,424 KB |
testcase_13 | AC | 12 ms
19,796 KB |
testcase_14 | AC | 49 ms
71,200 KB |
testcase_15 | AC | 28 ms
40,420 KB |
testcase_16 | AC | 19 ms
28,120 KB |
testcase_17 | AC | 31 ms
44,520 KB |
testcase_18 | AC | 51 ms
75,300 KB |
testcase_19 | AC | 12 ms
17,740 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 57 ms
81,448 KB |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" ) func configure(scanner *bufio.Scanner) { scanner.Split(bufio.ScanWords) scanner.Buffer(make([]byte, 1000005), 1000005) } func getNextString(scanner *bufio.Scanner) string { scanned := scanner.Scan() if !scanned { panic("scan failed") } 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 getNextFloat64(scanner *bufio.Scanner) float64 { i, _ := strconv.ParseFloat(getNextString(scanner), 64) return i } func main() { fp := os.Stdin wfp := os.Stdout extra := 0 if os.Getenv("I") == "IronMan" { fp, _ = os.Open(os.Getenv("END_GAME")) extra = 100 } scanner := bufio.NewScanner(fp) configure(scanner) writer := bufio.NewWriter(wfp) defer func() { r := recover() if r != nil { fmt.Fprintln(writer, r) } writer.Flush() }() solve(scanner, writer) for i := 0; i < extra; i++ { fmt.Fprintln(writer, "-----------------------------------") solve(scanner, writer) } } func solve(scanner *bufio.Scanner, writer *bufio.Writer) { n := getNextInt(scanner) yy := make([]int, n) for i := 0; i < n; i++ { yy[i] = getNextInt(scanner) } mx := 10000 dp := makeGrid(n+1, mx+1) for i := 0; i < n+1; i++ { for j := 0; j < mx+1; j++ { dp[i][j] = math.MaxInt32 } } dp[0][0] = 0 for i := 0; i < n; i++ { mn := dp[i][0] for j := 0; j < mx+1; j++ { mn.minAs(dp[i][j]) dp[i+1][j].minAs(mn + cint(abs(yy[i]-j))) } } var ans cint ans = math.MaxInt32 for i := 0; i < mx+1; i++ { ans.minAs(dp[n][i]) } fmt.Fprintln(writer, ans) } func abs(a int) int { if a < 0 { return -a } return a } func makeGrid(h, w int) [][]cint { index := make([][]cint, h, h) data := make([]cint, h*w, h*w) for i := 0; i < h; i++ { index[i] = data[i*w : (i+1)*w] } return index } type cint int64 func (ct *cint) minAs(x cint) *cint { *ct = ct.min(x) return ct } func (ct *cint) maxAs(x cint) *cint { *ct = ct.max(x) return ct } func (ct cint) min(x cint) cint { if ct > x { return x } return ct } func (ct cint) max(x cint) cint { if ct < x { return x } return ct }