結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:39:14
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 15,177 ms
コンパイル使用メモリ 445,044 KB
実行使用メモリ 116,136 KB
最終ジャッジ日時 2024-07-19 23:32:48
合計ジャッジ時間 44,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
54,668 KB
testcase_01 AC 342 ms
55,280 KB
testcase_02 AC 344 ms
55,000 KB
testcase_03 AC 342 ms
54,984 KB
testcase_04 AC 336 ms
55,020 KB
testcase_05 WA -
testcase_06 AC 338 ms
54,976 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 868 ms
87,868 KB
testcase_15 AC 911 ms
97,696 KB
testcase_16 AC 869 ms
101,764 KB
testcase_17 AC 828 ms
96,176 KB
testcase_18 AC 889 ms
102,016 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,017 ms
113,136 KB
testcase_32 AC 808 ms
89,708 KB
testcase_33 AC 781 ms
96,828 KB
testcase_34 AC 875 ms
103,040 KB
testcase_35 AC 321 ms
51,568 KB
testcase_36 AC 893 ms
111,740 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:9:23: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    val amin = a.min()!!
                      ^
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 ans = minOf(f(amin), f(amax))
    if (n%2 == 1) ans = minOf(ans, f(a[n/2]))
    else {
        ans = minOf(ans,  f((a[n/2-1] + a[n/2]) / 2 ) )
        ans = minOf(ans,  f(a[n/2-1]))
        ans = minOf(ans,  f((a[n/2-1] + a[n/2]) / 2 +1) )
        ans = minOf(ans,  f(a[n/2]))
    }

    println(ans)
}
0