結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
58,676 KB
testcase_01 AC 326 ms
60,244 KB
testcase_02 AC 322 ms
55,060 KB
testcase_03 AC 327 ms
55,240 KB
testcase_04 AC 318 ms
54,960 KB
testcase_05 AC 333 ms
55,092 KB
testcase_06 AC 333 ms
54,996 KB
testcase_07 AC 319 ms
54,996 KB
testcase_08 AC 330 ms
55,332 KB
testcase_09 AC 330 ms
55,452 KB
testcase_10 AC 338 ms
55,468 KB
testcase_11 AC 1,816 ms
116,804 KB
testcase_12 AC 1,743 ms
101,532 KB
testcase_13 AC 1,751 ms
114,584 KB
testcase_14 AC 1,116 ms
97,156 KB
testcase_15 AC 1,096 ms
97,856 KB
testcase_16 AC 1,481 ms
101,332 KB
testcase_17 AC 1,202 ms
98,352 KB
testcase_18 AC 1,383 ms
112,804 KB
testcase_19 AC 1,746 ms
98,584 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,938 ms
100,284 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,660 ms
114,840 KB
testcase_32 AC 1,333 ms
97,276 KB
testcase_33 AC 1,281 ms
99,220 KB
testcase_34 TLE -
testcase_35 AC 345 ms
60,408 KB
testcase_36 AC 1,217 ms
113,480 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