結果

問題 No.1300 Sum of Inversions
ユーザー yudedakoyudedako
提出日時 2022-01-10 21:43:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,444 ms / 2,000 ms
コード長 1,439 bytes
コンパイル時間 16,607 ms
コンパイル使用メモリ 449,548 KB
実行使用メモリ 125,716 KB
最終ジャッジ日時 2024-11-14 11:07:49
合計ジャッジ時間 60,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
60,668 KB
testcase_01 AC 341 ms
60,672 KB
testcase_02 AC 343 ms
60,628 KB
testcase_03 AC 1,354 ms
107,584 KB
testcase_04 AC 1,315 ms
105,636 KB
testcase_05 AC 1,142 ms
101,432 KB
testcase_06 AC 1,308 ms
107,828 KB
testcase_07 AC 1,409 ms
107,844 KB
testcase_08 AC 1,367 ms
108,084 KB
testcase_09 AC 1,444 ms
107,780 KB
testcase_10 AC 1,002 ms
95,444 KB
testcase_11 AC 1,018 ms
95,192 KB
testcase_12 AC 1,387 ms
107,856 KB
testcase_13 AC 1,245 ms
105,748 KB
testcase_14 AC 1,436 ms
122,240 KB
testcase_15 AC 1,418 ms
107,892 KB
testcase_16 AC 1,295 ms
107,736 KB
testcase_17 AC 979 ms
93,124 KB
testcase_18 AC 1,022 ms
93,284 KB
testcase_19 AC 1,110 ms
99,880 KB
testcase_20 AC 1,072 ms
101,600 KB
testcase_21 AC 1,128 ms
101,608 KB
testcase_22 AC 1,113 ms
101,484 KB
testcase_23 AC 1,223 ms
107,796 KB
testcase_24 AC 1,148 ms
99,324 KB
testcase_25 AC 1,049 ms
93,240 KB
testcase_26 AC 995 ms
93,388 KB
testcase_27 AC 1,077 ms
97,424 KB
testcase_28 AC 1,367 ms
107,832 KB
testcase_29 AC 1,140 ms
99,476 KB
testcase_30 AC 1,408 ms
107,840 KB
testcase_31 AC 1,129 ms
99,592 KB
testcase_32 AC 1,140 ms
99,308 KB
testcase_33 AC 656 ms
78,116 KB
testcase_34 AC 701 ms
101,516 KB
testcase_35 AC 870 ms
125,716 KB
testcase_36 AC 888 ms
123,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:26:9: warning: variable 'n' is never used
    val n = readLine()!!.trim().toInt()
        ^

ソースコード

diff #

const val MOD = 998244353
class Bit(val size: Int) {
    private val vec = IntArray(size)
    fun get(position: Int): Int {
        var result = 0
        var pos = position
        while (pos in vec.indices) {
            result = (result + vec[pos]) % MOD
            pos -= pos.inv() and (pos + 1)
        }
        return result
    }
    fun add(position: Int, value: Int) {
        var pos = position
        while (pos in vec.indices) {
            vec[pos] = (vec[pos] + value) % MOD
            pos += pos.inv() and (pos + 1)
        }
    }
    fun add(position: Int, value: Long) {
        return add(position, (value % MOD).toInt())
    }
}
fun main() {
    val n = readLine()!!.trim().toInt()
    val num = readLine()!!.trim().split(' ').map(String::toInt)
    val rank = num.distinct().sorted().let { list -> list.indices.associateBy { list[it] }}
    val sumBits = Array(2){Bit(rank.size)}
    val countBits = Array(2){Bit(rank.size)}
    var result = 0L
    for (a in num.reversed()) {
        val i = rank[a]!!
        val sum2 = sumBits[1].get(i - 1)
        val count2 = countBits[1].get(i - 1)
        result = (result + sum2 + count2.toLong() * a) % MOD
        val sum1 = sumBits[0].get(i - 1)
        val count1 = countBits[0].get(i - 1)
        sumBits[1].add(i, sum1 + count1.toLong() * a)
        countBits[1].add(i, count1)
        sumBits[0].add(i, a)
        countBits[0].add(i, 1)
    }
    println(result)
}
0