結果

問題 No.1818 6 Operations
ユーザー yudedakoyudedako
提出日時 2022-01-30 23:19:47
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,128 ms / 2,500 ms
コード長 1,137 bytes
コンパイル時間 13,968 ms
コンパイル使用メモリ 264,636 KB
実行使用メモリ 63,920 KB
最終ジャッジ日時 2024-06-11 08:28:36
合計ジャッジ時間 43,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 800 ms
63,092 KB
testcase_01 AC 805 ms
63,292 KB
testcase_02 AC 798 ms
63,384 KB
testcase_03 AC 804 ms
63,392 KB
testcase_04 AC 830 ms
63,160 KB
testcase_05 AC 806 ms
63,256 KB
testcase_06 AC 807 ms
63,252 KB
testcase_07 AC 846 ms
63,236 KB
testcase_08 AC 907 ms
63,720 KB
testcase_09 AC 1,006 ms
63,828 KB
testcase_10 AC 922 ms
63,628 KB
testcase_11 AC 900 ms
63,628 KB
testcase_12 AC 977 ms
63,616 KB
testcase_13 AC 932 ms
63,500 KB
testcase_14 AC 1,002 ms
63,800 KB
testcase_15 AC 988 ms
63,524 KB
testcase_16 AC 944 ms
63,888 KB
testcase_17 AC 1,016 ms
63,912 KB
testcase_18 AC 1,088 ms
63,900 KB
testcase_19 AC 1,054 ms
63,592 KB
testcase_20 AC 1,076 ms
63,616 KB
testcase_21 AC 1,106 ms
63,920 KB
testcase_22 AC 1,037 ms
63,796 KB
testcase_23 AC 1,119 ms
63,708 KB
testcase_24 AC 1,068 ms
63,624 KB
testcase_25 AC 1,102 ms
63,888 KB
testcase_26 AC 1,079 ms
63,856 KB
testcase_27 AC 1,082 ms
63,840 KB
testcase_28 AC 927 ms
63,572 KB
testcase_29 AC 919 ms
63,760 KB
testcase_30 AC 1,100 ms
63,820 KB
testcase_31 AC 1,062 ms
63,820 KB
testcase_32 AC 1,128 ms
63,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn.*
import scala.math.*
import scala.util.chaining.*

def distance(a: String, b: String): Int =
  val result = Array.fill(2){Array.tabulate(b.length + 1){i => i}}
  for
    i <- a.indices
  do
    val prev = i & 1
    val current = (i & 1) ^ 1
    result(current)(0) = i + 1
    for j <- b.indices do
      if a(i) == b(j) then
        result(current)(j + 1) = min(result(prev)(j), min(result(current)(j), result(prev)(j + 1)) + 1)
      else
        result(current)(j + 1) = min(result(prev)(j), min(result(current)(j), result(prev)(j + 1))) + 1
  result(a.length & 1).last

@main def main =
  val Array(n, m) = readLine().split(' ').map(_.toInt)
  val from = readLine().split(' ').map(_.toInt)
  val to = readLine().split(' ').map(_.toInt)
  val fromStr = mutable.StringBuilder()
  for a <- from do
    fromStr.append(' ')
    for _ <- 0 until a do
      fromStr.append('1')
  val toStr = mutable.StringBuilder()
  for b <- to do
    toStr.append(' ')
    for _ <- 0 until b do
      toStr.append('1')
  val result = distance(fromStr.toString(), toStr.toString())
  println(result)
0