結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:46:05
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 14,732 ms
コンパイル使用メモリ 445,880 KB
実行使用メモリ 120,872 KB
最終ジャッジ日時 2024-07-19 23:44:56
合計ジャッジ時間 68,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
55,044 KB
testcase_01 AC 330 ms
54,984 KB
testcase_02 AC 331 ms
54,876 KB
testcase_03 AC 333 ms
54,932 KB
testcase_04 AC 334 ms
54,936 KB
testcase_05 WA -
testcase_06 AC 330 ms
54,964 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 AC 1,756 ms
96,484 KB
testcase_15 AC 1,952 ms
97,780 KB
testcase_16 AC 1,988 ms
101,320 KB
testcase_17 AC 1,662 ms
97,628 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 WA -
testcase_26 TLE -
testcase_27 WA -
testcase_28 WA -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,631 ms
96,504 KB
testcase_33 AC 1,678 ms
97,340 KB
testcase_34 WA -
testcase_35 AC 315 ms
51,792 KB
testcase_36 AC 1,084 ms
111,232 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() }.sorted()

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

    fun f(ai : Long) : Long {
        val l = a.map { abs(ai - it) }.toMutableList().sorted()
        return -l.sum() + l.take(k).sum() * 2
    }

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

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

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