結果

問題 No.874 正規表現間距離
ユーザー yakamotoyakamoto
提出日時 2019-09-01 02:13:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 2,049 bytes
コンパイル時間 17,458 ms
コンパイル使用メモリ 451,856 KB
実行使用メモリ 69,512 KB
最終ジャッジ日時 2024-05-04 19:50:31
合計ジャッジ時間 29,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
49,736 KB
testcase_01 AC 279 ms
49,740 KB
testcase_02 AC 267 ms
49,880 KB
testcase_03 AC 267 ms
49,940 KB
testcase_04 AC 264 ms
49,816 KB
testcase_05 AC 258 ms
49,796 KB
testcase_06 AC 261 ms
49,908 KB
testcase_07 AC 257 ms
49,860 KB
testcase_08 AC 262 ms
49,680 KB
testcase_09 AC 264 ms
49,724 KB
testcase_10 AC 261 ms
49,888 KB
testcase_11 AC 256 ms
49,740 KB
testcase_12 AC 258 ms
49,920 KB
testcase_13 AC 254 ms
49,900 KB
testcase_14 AC 273 ms
49,876 KB
testcase_15 AC 258 ms
49,984 KB
testcase_16 AC 370 ms
56,676 KB
testcase_17 AC 393 ms
57,496 KB
testcase_18 AC 254 ms
49,852 KB
testcase_19 AC 255 ms
50,004 KB
testcase_20 AC 264 ms
49,644 KB
testcase_21 AC 266 ms
49,780 KB
testcase_22 AC 261 ms
49,932 KB
testcase_23 AC 267 ms
49,964 KB
testcase_24 AC 263 ms
49,624 KB
testcase_25 AC 467 ms
69,512 KB
testcase_26 AC 464 ms
68,824 KB
testcase_27 AC 482 ms
68,812 KB
testcase_28 AC 471 ms
69,512 KB
testcase_29 AC 467 ms
68,736 KB
testcase_30 AC 473 ms
68,624 KB
testcase_31 AC 497 ms
69,424 KB
testcase_32 AC 496 ms
69,424 KB
testcase_33 AC 266 ms
50,008 KB
testcase_34 AC 256 ms
49,816 KB
testcase_35 AC 273 ms
50,012 KB
testcase_36 AC 420 ms
57,992 KB
testcase_37 AC 366 ms
57,608 KB
testcase_38 AC 261 ms
49,788 KB
testcase_39 AC 256 ms
49,912 KB
testcase_40 AC 256 ms
49,852 KB
testcase_41 AC 262 ms
49,920 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