結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー rutilicusrutilicus
提出日時 2020-12-19 21:33:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 721 ms / 2,000 ms
コード長 1,111 bytes
コンパイル時間 14,890 ms
コンパイル使用メモリ 435,732 KB
実行使用メモリ 86,852 KB
最終ジャッジ日時 2024-09-21 10:43:16
合計ジャッジ時間 35,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 437 ms
57,200 KB
testcase_01 AC 283 ms
51,684 KB
testcase_02 AC 296 ms
51,772 KB
testcase_03 AC 675 ms
81,428 KB
testcase_04 AC 688 ms
86,392 KB
testcase_05 AC 670 ms
81,272 KB
testcase_06 AC 672 ms
79,200 KB
testcase_07 AC 702 ms
86,852 KB
testcase_08 AC 439 ms
55,596 KB
testcase_09 AC 588 ms
73,644 KB
testcase_10 AC 676 ms
86,312 KB
testcase_11 AC 295 ms
51,840 KB
testcase_12 AC 709 ms
86,584 KB
testcase_13 AC 721 ms
86,444 KB
testcase_14 AC 684 ms
86,392 KB
testcase_15 AC 291 ms
51,936 KB
testcase_16 AC 288 ms
51,684 KB
testcase_17 AC 291 ms
51,616 KB
testcase_18 AC 297 ms
51,612 KB
testcase_19 AC 291 ms
51,676 KB
testcase_20 AC 293 ms
51,812 KB
testcase_21 AC 287 ms
51,820 KB
testcase_22 AC 292 ms
51,724 KB
testcase_23 AC 438 ms
56,556 KB
testcase_24 AC 528 ms
66,536 KB
testcase_25 AC 614 ms
78,168 KB
testcase_26 AC 481 ms
60,560 KB
testcase_27 AC 597 ms
68,320 KB
testcase_28 AC 614 ms
74,176 KB
testcase_29 AC 649 ms
79,888 KB
testcase_30 AC 713 ms
86,732 KB
testcase_31 AC 509 ms
62,792 KB
testcase_32 AC 459 ms
60,240 KB
testcase_33 AC 627 ms
81,740 KB
testcase_34 AC 291 ms
51,672 KB
testcase_35 AC 294 ms
51,772 KB
testcase_36 AC 288 ms
51,620 KB
testcase_37 AC 289 ms
51,696 KB
testcase_38 AC 289 ms
51,760 KB
testcase_39 AC 293 ms
51,644 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:18:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(mergeCount(bArr))
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val num2Index = IntArray(n + 1)

    readInputLine().split(" ").mapIndexed { index, s ->
        num2Index[s.toInt()] = index
    }

    val bArr = readInputLine().split(" ").map { it.toInt() }.toIntArray()

    bArr.forEachIndexed { index, i ->
        bArr[index] = num2Index[i]
    }

    builder.appendln(mergeCount(bArr))

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}

fun mergeCount(arr: IntArray): Long {
    val n = arr.size
    if (n <= 1L) {
        return 0L
    }
    val b = IntArray(n / 2) { arr[it] }
    val c = IntArray(arr.size - (n / 2)) { arr[it + n / 2] }

    var count = 0L
    count += mergeCount(b)
    count += mergeCount(c)
    var ai = 0
    var bi = 0
    var ci = 0
    while (ai < n) {
        if (bi < b.size && (ci == c.size || b[bi] <= c[ci])) {
            arr[ai] = b[bi]
            bi++
        } else {
            count += (n / 2 - bi).toLong()
            arr[ai] = c[ci]
            ci++
        }
        ai++
    }
    return count
}
0