結果

問題 No.2089 置換の符号
ユーザー 箱星箱星
提出日時 2022-09-30 21:26:01
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 1,833 bytes
コンパイル時間 15,479 ms
コンパイル使用メモリ 446,520 KB
実行使用メモリ 57,416 KB
最終ジャッジ日時 2024-12-22 22:15:27
合計ジャッジ時間 29,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
54,512 KB
testcase_01 AC 335 ms
54,592 KB
testcase_02 AC 336 ms
54,388 KB
testcase_03 AC 338 ms
54,648 KB
testcase_04 AC 340 ms
54,652 KB
testcase_05 AC 339 ms
54,528 KB
testcase_06 AC 340 ms
54,768 KB
testcase_07 AC 353 ms
54,568 KB
testcase_08 AC 339 ms
54,564 KB
testcase_09 AC 344 ms
54,496 KB
testcase_10 AC 342 ms
54,652 KB
testcase_11 AC 343 ms
54,632 KB
testcase_12 AC 346 ms
54,468 KB
testcase_13 AC 341 ms
54,660 KB
testcase_14 AC 339 ms
54,672 KB
testcase_15 AC 343 ms
54,592 KB
testcase_16 AC 338 ms
54,568 KB
testcase_17 AC 339 ms
54,500 KB
testcase_18 AC 347 ms
54,656 KB
testcase_19 AC 335 ms
54,484 KB
testcase_20 AC 339 ms
54,568 KB
testcase_21 AC 350 ms
54,652 KB
testcase_22 AC 346 ms
54,704 KB
testcase_23 AC 365 ms
54,636 KB
testcase_24 AC 347 ms
54,884 KB
testcase_25 AC 352 ms
54,676 KB
testcase_26 AC 354 ms
54,792 KB
testcase_27 AC 375 ms
55,300 KB
testcase_28 AC 480 ms
56,832 KB
testcase_29 AC 471 ms
57,292 KB
testcase_30 AC 474 ms
57,356 KB
testcase_31 AC 474 ms
57,416 KB
testcase_32 AC 477 ms
57,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    val inv = inversionNumber(a)
    println(if (inv % 2 == 0L) 1 else -1)
}

fun compress(a: Array<Int>): Array<Int> {
    val b = a.sorted().distinct().toTypedArray()
    return a.map { b.binarySearch(it) }.toTypedArray()
}

class BIT(private val n: Int) {
    private val data = LongArray(n) { 0 }

    fun add(i: Int, x: Long) {
        var p = i + 1
        while (p <= n) {
            data[p - 1] += x
            p += p and -p
        }
    }

    fun sum(range: IntRange): Long {
        val l = range.first
        val r = range.last + 1
        return sum(r) - sum(l)
    }

    private fun sum(i: Int): Long {
        var r = i
        var s = 0L
        while(r > 0) {
            s += data[r - 1]
            r -= r and -r
        }
        return s
    }
}

fun inversionNumber(a: Array<Int>): Long {
    val b = compress(a)
    val n = a.size
    val bit = BIT(n)
    var ans = 0L
    for (i in 0 until n) {
        ans += i - bit.sum(0..b[i])
        bit.add(b[i], 1)
    }
    return ans
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0