結果

問題 No.1029 JJOOII 3
ユーザー yakamotoyakamoto
提出日時 2020-04-24 02:12:10
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 3,448 bytes
コンパイル時間 17,373 ms
コンパイル使用メモリ 456,716 KB
実行使用メモリ 248,072 KB
最終ジャッジ日時 2024-04-22 11:55:07
合計ジャッジ時間 24,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
53,188 KB
testcase_01 AC 285 ms
85,864 KB
testcase_02 AC 283 ms
49,912 KB
testcase_03 AC 502 ms
107,356 KB
testcase_04 AC 993 ms
248,072 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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

data class Entry(val s: String, val c:  Long)
data class Edge(val v: Int, val weight: Long)
val INF = 1e18.toLong()

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val K = ni()
    val E = Array(N){Entry(ns(), nl())}
    val g = Array(K * 3 + 1) { mutableListOf<Edge>()}
    val JOI = "JOI"

    val cnt = Array(N){i -> Array(3){j -> E[i].s.count{ it == JOI[j]}} }

    fun calcEnd(s: String, start: Int): Int {
      var cur = start
      for (i in 0 until s.length) {
        if (cur == 3 * K) return cur
        if (s[i] == JOI[cur / K]) cur++
      }
      return cur
    }

    for ((i, e) in E.withIndex()) {
      for (s in 0 until 3 * K) {
        val end = if (K - s % K > 100) {
          s + cnt[i][s / K]
        } else {
          calcEnd(e.s, s)
        }
        if (end > s) {
          g[s].add(Edge(end, e.c))
        }
      }
    }

    debug{g.joinToString(" ")}

    val D = LongArray(g.size){INF}
    D[0] = 0
    for (u in 0 until 3 * K) {
      if (D[u] == INF) continue

      for (i in 0 until g[u].size) {
        val e = g[u][i]
        if (D[e.v] > D[u] + e.weight) {
          D[e.v] = D[u] + e.weight
        }
      }
    }
    debug(D)
    val cost = D[3 * K]
    if (cost == INF) out.println(-1) else out.println(cost)
  }













































  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