結果

問題 No.1077 Noelちゃんと星々4
ユーザー yakamotoyakamoto
提出日時 2020-06-12 21:37:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 2,712 bytes
コンパイル時間 17,548 ms
コンパイル使用メモリ 444,340 KB
実行使用メモリ 149,376 KB
最終ジャッジ日時 2024-06-24 04:36:19
合計ジャッジ時間 23,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
60,100 KB
testcase_01 AC 337 ms
60,188 KB
testcase_02 AC 390 ms
112,176 KB
testcase_03 AC 410 ms
149,308 KB
testcase_04 AC 358 ms
80,644 KB
testcase_05 AC 348 ms
74,408 KB
testcase_06 AC 358 ms
86,976 KB
testcase_07 AC 372 ms
112,280 KB
testcase_08 AC 349 ms
82,812 KB
testcase_09 AC 341 ms
78,616 KB
testcase_10 AC 411 ms
149,376 KB
testcase_11 AC 372 ms
112,208 KB
testcase_12 AC 369 ms
112,080 KB
testcase_13 AC 344 ms
74,496 KB
testcase_14 AC 401 ms
149,132 KB
testcase_15 AC 376 ms
112,288 KB
testcase_16 AC 353 ms
82,564 KB
testcase_17 AC 379 ms
112,272 KB
testcase_18 AC 412 ms
149,236 KB
testcase_19 AC 332 ms
72,384 KB
testcase_20 AC 309 ms
59,964 KB
testcase_21 AC 408 ms
149,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007L

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val Y = nal(N)
    val INF = 1e18.toLong()
    val MAX = 10_000
    val dp = Array(N + 1){LongArray(MAX + 1){INF} }
    dp[0][0] = 0L
    for (i in 0 until N) {
      var mn = INF
      for (j in 0 .. MAX) {
        mn = min(mn, dp[i][j])
        dp[i + 1][j] = mn + abs(Y[i] - j)
      }
    }
    out.println(dp[N].min())
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<LongArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0