結果

問題 No.150 "良問"(良問とは言っていない
ユーザー バカらっくバカらっく
提出日時 2021-11-10 10:35:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 1,046 bytes
コンパイル時間 12,684 ms
コンパイル使用メモリ 442,508 KB
実行使用メモリ 54,872 KB
最終ジャッジ日時 2024-11-20 19:46:19
合計ジャッジ時間 21,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
52,492 KB
testcase_01 AC 313 ms
51,236 KB
testcase_02 AC 312 ms
51,388 KB
testcase_03 AC 314 ms
51,440 KB
testcase_04 AC 316 ms
51,152 KB
testcase_05 AC 318 ms
51,196 KB
testcase_06 AC 376 ms
54,872 KB
testcase_07 AC 314 ms
51,060 KB
testcase_08 AC 312 ms
51,424 KB
testcase_09 AC 319 ms
51,500 KB
testcase_10 AC 358 ms
52,660 KB
testcase_11 AC 356 ms
52,340 KB
testcase_12 AC 347 ms
52,120 KB
testcase_13 AC 347 ms
52,532 KB
testcase_14 AC 349 ms
52,976 KB
testcase_15 AC 354 ms
52,728 KB
testcase_16 AC 325 ms
51,364 KB
testcase_17 AC 333 ms
51,780 KB
testcase_18 AC 362 ms
52,696 KB
testcase_19 AC 367 ms
52,972 KB
testcase_20 AC 365 ms
52,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.lang.StringBuilder

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val ans = StringBuilder()
    for(i in 1..n) {
        ans.appendLine(solve(readLine()!!))
    }
    print(ans.toString())
}

fun solve(s:String):Int {
    val w1 = "good"
    val w2 = "problem"
    var w2Index:Int? = null
    var w2Count = 100
    var ans = s.length
    for(i in (0..(s.length-w1.length-w2.length))) {
        val w1Conv = diff(s.drop(i).take(w1.length), w1)
        if(w2Index?:0 >=i+w1.length) {
            ans = Math.min(ans, w1Conv + w2Count)
            continue
        }
        var convCount = 100
        for(j in (i+w1.length..s.length - w2.length)) {
            val tmp = diff(s.drop(j).take(w2.length), w2)
            if(convCount >= tmp) {
                w2Index = j
                w2Count = tmp
                convCount = tmp
            }
        }
        ans = Math.min(ans, w1Conv + w2Count)
    }
    return ans
}

fun diff(s1:String, s2:String):Int {
    return s1.indices.count { s1[it] != s2[it] }
}
0