結果

問題 No.874 正規表現間距離
ユーザー yakamotoyakamoto
提出日時 2019-09-01 02:13:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 2,049 bytes
コンパイル時間 15,174 ms
コンパイル使用メモリ 446,680 KB
実行使用メモリ 74,844 KB
最終ジャッジ日時 2024-11-26 09:53:01
合計ジャッジ時間 30,464 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
54,092 KB
testcase_01 AC 270 ms
54,304 KB
testcase_02 AC 261 ms
54,112 KB
testcase_03 AC 255 ms
54,256 KB
testcase_04 AC 261 ms
54,284 KB
testcase_05 AC 255 ms
54,212 KB
testcase_06 AC 255 ms
54,152 KB
testcase_07 AC 253 ms
54,372 KB
testcase_08 AC 256 ms
54,284 KB
testcase_09 AC 251 ms
54,192 KB
testcase_10 AC 249 ms
54,148 KB
testcase_11 AC 260 ms
54,112 KB
testcase_12 AC 245 ms
54,172 KB
testcase_13 AC 250 ms
54,132 KB
testcase_14 AC 253 ms
54,152 KB
testcase_15 AC 253 ms
54,068 KB
testcase_16 AC 368 ms
61,440 KB
testcase_17 AC 383 ms
62,132 KB
testcase_18 AC 256 ms
54,172 KB
testcase_19 AC 255 ms
54,168 KB
testcase_20 AC 250 ms
54,076 KB
testcase_21 AC 250 ms
54,040 KB
testcase_22 AC 262 ms
54,184 KB
testcase_23 AC 251 ms
54,372 KB
testcase_24 AC 249 ms
54,068 KB
testcase_25 AC 475 ms
74,472 KB
testcase_26 AC 460 ms
73,696 KB
testcase_27 AC 464 ms
73,632 KB
testcase_28 AC 460 ms
74,844 KB
testcase_29 AC 456 ms
73,668 KB
testcase_30 AC 455 ms
73,836 KB
testcase_31 AC 473 ms
74,676 KB
testcase_32 AC 487 ms
74,616 KB
testcase_33 AC 259 ms
54,452 KB
testcase_34 AC 265 ms
54,100 KB
testcase_35 AC 262 ms
54,312 KB
testcase_36 AC 402 ms
62,436 KB
testcase_37 AC 374 ms
62,108 KB
testcase_38 AC 260 ms
54,096 KB
testcase_39 AC 257 ms
54,052 KB
testcase_40 AC 260 ms
54,092 KB
testcase_41 AC 247 ms
54,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.min

// なんか本番でエラーでる
private val isDebug = runCatching {
  System.getenv("MY_DEBUG") != null
}.fold({it}, {false})

private fun readLn() = readLine()!!
private fun readInt() = readLn().toInt()
private fun readStrings() = readLn().split(" ")
private fun readInts() = readStrings().map { it.toInt() }.toIntArray()
private fun readLongs() = readStrings().map { it.toLong() }.toLongArray()
private fun debug(msg: () -> String) {
  if (isDebug) System.err.println(msg())
}
private fun debug(a: IntArray) {
  if (isDebug) debug{a.joinToString(" ")}
}
private fun debugDim(A: Array<IntArray>) {
  if (isDebug) {
    for (a in A) {
      debug(a)
    }
  }
}

val MOD = 1000000007

data class Entry(val i: Int, val x: Long)

fun main() {
  val A = readLine()!!
  val B = readLine()!!
  val dp = Array(A.length + 1){IntArray(B.length + 1){1e9.toInt()} }
  dp[0][0] = 0

  fun distance(i: Int, j: Int): Int {
    return if (A[i] == B[j]) 0 else 1
  }

  for (i in 0..A.length) {
    if (i > 0 && (A[i-1] == '?' || A[i-1] == '*')) {
      for (j in 0..B.length) {
        dp[i][j] = dp[i-1][j]
      }
    } else {
      for (j in 0..B.length) {
        if (i == 0 && j == 0) continue

        if (j > 0 && (B[j-1] == '?' || B[j-1] == '*')) {
          dp[i][j] = dp[i][j-1]
        } else {
          if (i > 0 && j > 0) dp[i][j] = min(dp[i][j], dp[i-1][j-1] + distance(i-1, j-1))
          if (j > 0 && i < A.length && A[i] == '*') dp[i][j] = min(dp[i][j], dp[i][j-1] + distance(i-1, j-1))
          if (i > 0 && j < B.length && B[j] == '*') dp[i][j] = min(dp[i][j], dp[i-1][j] + distance(i-1, j-1))
          if (i > 0) dp[i][j] = min(dp[i][j], dp[i-1][j] + 1)
          if (i > 0 && i < A.length && (A[i] == '?' || A[i] == '*')) dp[i][j] = min(dp[i][j], dp[i-1][j])
          if (j > 0) dp[i][j] = min(dp[i][j], dp[i][j-1] + 1)
          if (j > 0 && j < B.length && (B[j] == '?' || B[j] == '*')) dp[i][j] = min(dp[i][j], dp[i][j-1])
        }
      }
    }
  }

  debugDim(dp)
  println(dp[A.length][B.length])
}


0