結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:55:08
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 16,097 ms
コンパイル使用メモリ 453,124 KB
実行使用メモリ 126,536 KB
最終ジャッジ日時 2024-07-20 00:09:54
合計ジャッジ時間 44,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
58,184 KB
testcase_01 AC 339 ms
60,380 KB
testcase_02 AC 340 ms
60,364 KB
testcase_03 AC 346 ms
54,808 KB
testcase_04 AC 358 ms
54,612 KB
testcase_05 AC 345 ms
54,996 KB
testcase_06 AC 344 ms
54,984 KB
testcase_07 AC 343 ms
54,776 KB
testcase_08 AC 362 ms
55,052 KB
testcase_09 AC 360 ms
55,236 KB
testcase_10 AC 352 ms
55,100 KB
testcase_11 AC 1,945 ms
116,964 KB
testcase_12 AC 1,826 ms
101,380 KB
testcase_13 AC 1,939 ms
114,304 KB
testcase_14 AC 1,214 ms
96,932 KB
testcase_15 AC 1,250 ms
97,916 KB
testcase_16 AC 1,533 ms
101,368 KB
testcase_17 AC 1,425 ms
98,380 KB
testcase_18 AC 1,472 ms
112,484 KB
testcase_19 AC 1,769 ms
98,308 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,585 ms
114,776 KB
testcase_32 AC 1,107 ms
97,144 KB
testcase_33 AC 1,152 ms
99,528 KB
testcase_34 TLE -
testcase_35 AC 344 ms
60,304 KB
testcase_36 AC 1,090 ms
113,564 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:9:9: warning: variable 'amin' is never used
    val amin = a.min()!!
        ^
Main.kt:9:23: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    val amin = a.min()!!
                      ^
Main.kt:10:9: warning: variable 'amax' is never used
    val amax = a.max()!!
        ^
Main.kt:10:23: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    val amax = a.max()!!
                      ^

ソースコード

diff #

import kotlin.collections.*
import kotlin.math.*

@kotlin.ExperimentalStdlibApi
fun main() {
    val (n, k) = readLine()!!.split(" ").map { it.toInt() }
    val a = readLine()!!.split(" ").map { it.toLong() }.toTypedArray().sorted()

    val amin = a.min()!!
    val amax = a.max()!!

    fun f(ai : Long) : Long {
        val l = a.map { abs(ai - it) }.sorted()
        return l.take(k).sum() - l.takeLast(n-k).sum()
    }

    var l = 0; var r = n - 1
    while(l + 10 < r) {
        val ll = (l+l+r) / 3
        val rr = (l+r+r) / 3

        if (f(a[ll]) < f(a[rr])) r = rr
        else l = ll
    }

    var ans = minOf(f(a.first()), f(a.last()))
    for (i in l .. r) {
        ans = minOf(ans, f(a[i]))
    }
    println(ans)
}
0