結果

問題 No.1282 Display Elements
ユーザー rutilicusrutilicus
提出日時 2020-11-30 23:32:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,753 ms / 2,000 ms
コード長 2,015 bytes
コンパイル時間 16,565 ms
コンパイル使用メモリ 454,492 KB
実行使用メモリ 126,292 KB
最終ジャッジ日時 2024-09-13 02:42:04
合計ジャッジ時間 33,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
60,172 KB
testcase_01 AC 331 ms
60,240 KB
testcase_02 AC 330 ms
60,372 KB
testcase_03 AC 313 ms
56,924 KB
testcase_04 AC 325 ms
60,492 KB
testcase_05 AC 329 ms
60,468 KB
testcase_06 AC 329 ms
60,436 KB
testcase_07 AC 337 ms
60,436 KB
testcase_08 AC 331 ms
60,436 KB
testcase_09 AC 332 ms
60,296 KB
testcase_10 AC 392 ms
62,768 KB
testcase_11 AC 389 ms
62,796 KB
testcase_12 AC 345 ms
60,348 KB
testcase_13 AC 397 ms
60,928 KB
testcase_14 AC 397 ms
60,996 KB
testcase_15 AC 1,618 ms
117,800 KB
testcase_16 AC 1,086 ms
94,376 KB
testcase_17 AC 1,488 ms
123,452 KB
testcase_18 AC 1,137 ms
101,424 KB
testcase_19 AC 935 ms
105,612 KB
testcase_20 AC 937 ms
107,920 KB
testcase_21 AC 1,687 ms
126,292 KB
testcase_22 AC 1,111 ms
104,544 KB
testcase_23 AC 1,753 ms
126,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:80: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(ans)
            ^

ソースコード

diff #

class LongSegmentTree(n: Int, private val init: Long, private val func: (Long, Long) -> Long) {
    private var size = 1
    private var segTree: LongArray

    init {
        while (size < n) {
            size *= 2
        }

        segTree = LongArray(size * 2 - 1) { init }
    }

    // 指定要素を更新
    fun update(x: Int, value: Long) {
        var tmp = x + size - 1

        segTree[tmp] = value
        while (tmp > 0) {
            tmp = (tmp - 1) / 2
            segTree[tmp] = func(segTree[2 * tmp + 1], segTree[2 * tmp + 2])
        }
    }

    // [a, b)の関数適用結果を取得
    // bが開区間であることに注意
    fun get(a: Int, b: Int, k: Int = 0, l: Int = 0, r: Int = size): Long {
        if (r <= a || b <= l) {
            return init
        }
        if (a <= l && r <= b) {
            return segTree[k]
        }

        val vl = get(a, b, 2 * k + 1, l, (l + r) / 2)
        val vr = get(a, b, 2 * k + 2, (l + r) / 2, r)

        return func(vl, vr)
    }

    // 指定要素を取得
    fun getElem(x: Int): Long = segTree[x + size - 1]
}

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

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

    val allList = mutableSetOf<Int>()

    for (a in aList) {
        allList.add(a)
    }
    for (b in bArr) {
        allList.add(b)
    }

    val item2Map = mutableMapOf<Int, Int>()

    for ((i, a) in allList.sorted().withIndex()) {
        item2Map[a] = i
    }

    val segTree = LongSegmentTree(2 * n, 0L, Long::plus)

    var ans = 0L

    for ((i, a) in aList.withIndex()) {
        val bIndex = item2Map[bArr[i]]!!
        val aIndex = item2Map[a]!!

        segTree.update(bIndex, segTree.getElem(bIndex) + 1L)

        ans += segTree.get(0, aIndex)
    }

    builder.appendln(ans)

    print(builder.toString())
}

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