結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:47:56
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 15,711 ms
コンパイル使用メモリ 444,108 KB
実行使用メモリ 121,040 KB
最終ジャッジ日時 2024-07-19 23:49:19
合計ジャッジ時間 61,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
55,088 KB
testcase_01 AC 295 ms
55,060 KB
testcase_02 AC 302 ms
54,996 KB
testcase_03 AC 295 ms
55,020 KB
testcase_04 AC 304 ms
55,128 KB
testcase_05 AC 290 ms
55,084 KB
testcase_06 AC 304 ms
55,088 KB
testcase_07 AC 319 ms
55,096 KB
testcase_08 AC 299 ms
55,328 KB
testcase_09 AC 309 ms
55,320 KB
testcase_10 AC 303 ms
55,332 KB
testcase_11 AC 1,735 ms
117,636 KB
testcase_12 AC 1,660 ms
99,532 KB
testcase_13 AC 1,899 ms
113,884 KB
testcase_14 AC 999 ms
95,928 KB
testcase_15 AC 1,067 ms
97,112 KB
testcase_16 AC 1,346 ms
101,440 KB
testcase_17 AC 1,186 ms
97,772 KB
testcase_18 AC 1,298 ms
112,632 KB
testcase_19 AC 1,692 ms
96,340 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,729 ms
97,268 KB
testcase_28 AC 1,957 ms
99,848 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,401 ms
116,300 KB
testcase_32 AC 991 ms
96,300 KB
testcase_33 AC 995 ms
96,176 KB
testcase_34 TLE -
testcase_35 AC 295 ms
52,056 KB
testcase_36 AC 1,010 ms
111,224 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])) 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