結果

問題 No.1037 exhausted
ユーザー yakamotoyakamoto
提出日時 2020-04-24 23:37:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 3,065 bytes
コンパイル時間 16,680 ms
コンパイル使用メモリ 450,124 KB
実行使用メモリ 112,172 KB
最終ジャッジ日時 2024-04-23 04:21:52
合計ジャッジ時間 28,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
53,516 KB
testcase_01 AC 320 ms
53,764 KB
testcase_02 AC 317 ms
53,668 KB
testcase_03 AC 317 ms
53,420 KB
testcase_04 AC 318 ms
53,504 KB
testcase_05 AC 315 ms
53,500 KB
testcase_06 AC 318 ms
53,380 KB
testcase_07 AC 318 ms
53,640 KB
testcase_08 AC 317 ms
53,424 KB
testcase_09 AC 318 ms
53,776 KB
testcase_10 AC 323 ms
53,560 KB
testcase_11 AC 320 ms
53,428 KB
testcase_12 AC 554 ms
110,864 KB
testcase_13 AC 555 ms
110,884 KB
testcase_14 AC 560 ms
111,288 KB
testcase_15 AC 564 ms
111,116 KB
testcase_16 AC 557 ms
112,172 KB
testcase_17 AC 559 ms
111,576 KB
testcase_18 AC 556 ms
111,068 KB
testcase_19 AC 569 ms
111,588 KB
testcase_20 AC 515 ms
111,296 KB
testcase_21 AC 505 ms
111,612 KB
testcase_22 AC 515 ms
111,080 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

data class Station(val x: Int, val v: Int, val w: Long)
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val V = ni()
    val L = ni()
    val S = mutableListOf<Station>()
    for (i in 0 until N) {
      S += Station(ni(), ni(), nl())
    }
    S += Station(L, 0, 100)
    val INF = Long.MAX_VALUE / 2
    val dp = Array(N + 2){LongArray(V + 1){INF} }
    dp[0][V] = 0
    var preX = 0
    for (i in 0 .. N) {
      for (v in 0 .. V) {
        if (dp[i][v] == INF) continue
        val remain = v - (S[i].x - preX)
        if (remain < 0) continue
        dp[i + 1][remain] = min(dp[i + 1][remain], dp[i][v])
        val filled = min(V, remain + S[i].v)
        dp[i + 1][filled] = min(dp[i + 1][filled], dp[i][v] + S[i].w)
      }
      preX = S[i].x
    }
    val ans = dp[N + 1].min()
    if (ans == INF) out.println(-1) else out.println(ans)
  }













































  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<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