結果

問題 No.1391 ±1 Abs Sum
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 22:49:06
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 14,773 ms
コンパイル使用メモリ 445,212 KB
実行使用メモリ 121,096 KB
最終ジャッジ日時 2024-07-19 23:52:21
合計ジャッジ時間 59,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
54,856 KB
testcase_01 AC 285 ms
54,876 KB
testcase_02 AC 284 ms
54,944 KB
testcase_03 AC 296 ms
55,088 KB
testcase_04 AC 287 ms
54,840 KB
testcase_05 AC 286 ms
55,012 KB
testcase_06 AC 298 ms
54,864 KB
testcase_07 AC 305 ms
54,912 KB
testcase_08 AC 296 ms
55,224 KB
testcase_09 AC 296 ms
55,140 KB
testcase_10 AC 293 ms
55,032 KB
testcase_11 AC 1,740 ms
117,388 KB
testcase_12 AC 1,672 ms
99,480 KB
testcase_13 AC 1,760 ms
114,336 KB
testcase_14 AC 1,019 ms
95,852 KB
testcase_15 AC 1,047 ms
97,124 KB
testcase_16 AC 1,401 ms
101,216 KB
testcase_17 AC 1,161 ms
97,432 KB
testcase_18 AC 1,256 ms
112,668 KB
testcase_19 AC 1,638 ms
96,160 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,800 ms
97,316 KB
testcase_28 AC 1,826 ms
97,380 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,439 ms
117,632 KB
testcase_32 AC 949 ms
96,256 KB
testcase_33 AC 1,006 ms
96,340 KB
testcase_34 TLE -
testcase_35 AC 293 ms
51,804 KB
testcase_36 AC 1,004 ms
110,992 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 + 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