結果

問題 No.1826 Fruits Collecting
ユーザー yudedakoyudedako
提出日時 2022-01-31 16:16:38
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,490 bytes
コンパイル時間 15,397 ms
コンパイル使用メモリ 455,076 KB
実行使用メモリ 117,684 KB
最終ジャッジ日時 2024-06-11 08:57:47
合計ジャッジ時間 74,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 398 ms
56,172 KB
testcase_01 AC 465 ms
57,984 KB
testcase_02 AC 470 ms
57,716 KB
testcase_03 AC 517 ms
58,280 KB
testcase_04 AC 427 ms
55,944 KB
testcase_05 AC 1,285 ms
99,128 KB
testcase_06 AC 1,759 ms
104,716 KB
testcase_07 AC 1,547 ms
107,324 KB
testcase_08 AC 615 ms
65,164 KB
testcase_09 AC 1,882 ms
109,496 KB
testcase_10 AC 1,529 ms
103,088 KB
testcase_11 AC 1,544 ms
100,128 KB
testcase_12 AC 978 ms
89,084 KB
testcase_13 AC 758 ms
70,744 KB
testcase_14 AC 869 ms
88,464 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 324 ms
51,640 KB
testcase_26 AC 329 ms
51,476 KB
testcase_27 AC 344 ms
54,972 KB
testcase_28 AC 344 ms
55,008 KB
testcase_29 AC 359 ms
55,292 KB
testcase_30 AC 1,072 ms
88,816 KB
testcase_31 AC 1,491 ms
103,948 KB
testcase_32 AC 1,051 ms
90,232 KB
testcase_33 AC 1,850 ms
105,352 KB
testcase_34 AC 1,689 ms
103,336 KB
testcase_35 AC 864 ms
88,568 KB
testcase_36 AC 1,702 ms
110,376 KB
testcase_37 AC 1,657 ms
104,124 KB
testcase_38 AC 1,383 ms
97,688 KB
testcase_39 AC 1,044 ms
97,456 KB
testcase_40 AC 1,056 ms
102,192 KB
testcase_41 AC 716 ms
86,296 KB
testcase_42 AC 515 ms
60,420 KB
testcase_43 AC 337 ms
55,160 KB
testcase_44 AC 332 ms
55,008 KB
testcase_45 AC 344 ms
55,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.absoluteValue

class MaxBit(val size: Int) {
    private val array = LongArray(size){0}
    fun get(position: Int): Long {
        var result = 0L
        var pos = position
        while (pos in array.indices) {
            result = maxOf(result, array[pos])
            pos -= pos.inv() and (pos + 1)
        }
        return result
    }
    fun add(position: Int, value: Long) {
        var pos = position
        while (pos in array.indices) {
            array[pos] = maxOf(array[pos], value)
            pos += pos.inv() and (pos + 1)
        }
    }
    fun getAll(): Long = get(size - 1)
}
fun List<Int>.lowerBound(value: Int): Int {
    var min = 0
    var max = size
    while (min < max) {
        val mid = (min + max) ushr 1
        if (this[mid] < value) {
            min = mid + 1
        }else {
            max = mid
        }
    }
    return max
}
fun main() {
    val n = readLine()!!.toInt()
    val fruits = List(n){
        val (t, x, v) = readLine()!!.split(' ').map(String::toInt)
        Triple(t, x, v)
    }
    val diff = fruits.map { (t, x, _) -> t - x}.distinct().sorted()
    val bit = MaxBit(diff.size)
    for ((t, x, v) in fruits.sortedWith(compareBy<Triple<Int, Int, Int>> { (t, x, _) -> t + x}.thenBy { (t, _, _) -> t })) {
        if (t < x.absoluteValue) continue
        val di = diff.lowerBound(t - x)
        val maxValue = bit.get(di) + v
        bit.add(di, maxValue)
    }
    val result = bit.getAll()
    println(result)
}
0