結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:54:15
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 16,289 ms
コンパイル使用メモリ 455,448 KB
実行使用メモリ 120,952 KB
最終ジャッジ日時 2024-07-20 00:04:43
合計ジャッジ時間 64,253 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
55,284 KB
testcase_01 AC 325 ms
55,132 KB
testcase_02 AC 334 ms
55,176 KB
testcase_03 AC 335 ms
55,100 KB
testcase_04 AC 326 ms
55,088 KB
testcase_05 AC 327 ms
55,216 KB
testcase_06 AC 325 ms
55,412 KB
testcase_07 AC 326 ms
55,020 KB
testcase_08 AC 348 ms
55,412 KB
testcase_09 AC 345 ms
55,604 KB
testcase_10 AC 334 ms
55,128 KB
testcase_11 AC 1,976 ms
119,548 KB
testcase_12 AC 1,703 ms
102,208 KB
testcase_13 AC 1,956 ms
117,728 KB
testcase_14 AC 1,178 ms
96,056 KB
testcase_15 AC 1,185 ms
96,484 KB
testcase_16 AC 1,482 ms
102,228 KB
testcase_17 AC 1,260 ms
98,920 KB
testcase_18 AC 1,328 ms
111,656 KB
testcase_19 AC 1,721 ms
99,140 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,829 ms
98,268 KB
testcase_28 AC 1,994 ms
100,824 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,495 ms
118,720 KB
testcase_32 AC 1,057 ms
96,064 KB
testcase_33 AC 1,111 ms
96,452 KB
testcase_34 TLE -
testcase_35 AC 289 ms
51,608 KB
testcase_36 AC 1,026 ms
110,864 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.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