結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:57:39
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 13,960 ms
コンパイル使用メモリ 446,272 KB
実行使用メモリ 121,856 KB
最終ジャッジ日時 2024-07-20 00:15:18
合計ジャッジ時間 68,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
55,092 KB
testcase_01 AC 336 ms
55,040 KB
testcase_02 AC 353 ms
55,224 KB
testcase_03 AC 337 ms
55,020 KB
testcase_04 AC 340 ms
54,936 KB
testcase_05 WA -
testcase_06 AC 347 ms
55,068 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,878 ms
100,416 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,854 ms
98,780 KB
testcase_18 TLE -
testcase_19 WA -
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,731 ms
95,640 KB
testcase_33 AC 1,616 ms
96,628 KB
testcase_34 WA -
testcase_35 AC 336 ms
54,916 KB
testcase_36 AC 1,059 ms
110,884 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])) 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