結果

問題 No.1804 Intersection of LIS
ユーザー yudedakoyudedako
提出日時 2022-04-18 12:37:30
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,409 bytes
コンパイル時間 15,191 ms
コンパイル使用メモリ 442,740 KB
実行使用メモリ 123,464 KB
最終ジャッジ日時 2024-06-08 18:11:31
合計ジャッジ時間 40,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
58,532 KB
testcase_01 AC 315 ms
91,028 KB
testcase_02 AC 317 ms
57,400 KB
testcase_03 AC 943 ms
99,640 KB
testcase_04 AC 834 ms
99,836 KB
testcase_05 AC 840 ms
99,744 KB
testcase_06 AC 830 ms
99,684 KB
testcase_07 AC 829 ms
99,636 KB
testcase_08 AC 831 ms
99,808 KB
testcase_09 AC 827 ms
99,640 KB
testcase_10 AC 823 ms
99,720 KB
testcase_11 AC 843 ms
99,664 KB
testcase_12 AC 991 ms
99,684 KB
testcase_13 AC 927 ms
99,636 KB
testcase_14 AC 875 ms
99,848 KB
testcase_15 AC 870 ms
99,808 KB
testcase_16 AC 830 ms
99,724 KB
testcase_17 AC 840 ms
99,844 KB
testcase_18 AC 365 ms
55,784 KB
testcase_19 AC 372 ms
55,688 KB
testcase_20 AC 380 ms
55,708 KB
testcase_21 AC 370 ms
55,836 KB
testcase_22 AC 369 ms
55,756 KB
testcase_23 AC 367 ms
55,776 KB
testcase_24 AC 373 ms
55,940 KB
testcase_25 AC 361 ms
55,660 KB
testcase_26 AC 365 ms
55,640 KB
testcase_27 AC 363 ms
55,796 KB
testcase_28 AC 316 ms
55,024 KB
testcase_29 AC 314 ms
55,028 KB
testcase_30 AC 319 ms
55,072 KB
testcase_31 AC 305 ms
51,640 KB
testcase_32 AC 318 ms
54,996 KB
testcase_33 AC 313 ms
51,772 KB
testcase_34 AC 326 ms
55,032 KB
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun createLIS(permutation: List<Int>): List<Int> {
    val minLast = IntArray(permutation.size + 1){permutation.size + 1}.also { it[0] = 0 }
    val prevValue = IntArray(permutation.size + 1)
    for (a in permutation) {
        val pos = minLast.lowerBound(a)
        prevValue[a] = minLast[pos - 1]
        minLast[pos] = a
    }
    val result = mutableListOf<Int>((minLast.last { it != permutation.size + 1 }))
    while (result.last() > 0) {
        result.add(prevValue[result.last()])
    }
    result.removeLast()
    return result.reversed()
}
inline fun IntArray.partitionPoint(predicate: (Int) -> Boolean): Int {
    var min = 0
    var max = size
    while (min < max) {
        val mid = (min + max) / 2
        if (predicate(this[mid])) {
            min = mid + 1
        }else {
            max = mid
        }
    }
    return max
}
fun IntArray.lowerBound(target: Int): Int {
    return partitionPoint { it < target }
}
fun main() {
    System.setProperty("kotlin.collections.convert_arg_to_set_in_removeAll", "true")
    val n = readLine()!!.trim().toInt()
    val permutation = readLine()!!.trim().split(' ').map(String::toInt)
    val forward = createLIS(permutation)
    val backward = createLIS(permutation.reversed().map { n - it + 1 }).reversed().map { n - it + 1 }
    val fix = forward.intersect(backward)
    println(fix.size)
    println(fix.toList().sorted().joinToString(" "))
}
0