結果

問題 No.5020 Averaging
ユーザー 420801420801
提出日時 2024-02-25 16:56:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 579 ms / 1,000 ms
コード長 1,202 bytes
コンパイル時間 14,807 ms
コンパイル使用メモリ 446,452 KB
実行使用メモリ 62,200 KB
スコア 24,222,626
最終ジャッジ日時 2024-02-25 16:57:56
合計ジャッジ時間 43,141 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
61,916 KB
testcase_01 AC 492 ms
61,736 KB
testcase_02 AC 534 ms
61,736 KB
testcase_03 AC 514 ms
61,732 KB
testcase_04 AC 537 ms
61,724 KB
testcase_05 AC 561 ms
61,728 KB
testcase_06 AC 514 ms
61,736 KB
testcase_07 AC 570 ms
61,660 KB
testcase_08 AC 579 ms
61,728 KB
testcase_09 AC 492 ms
61,720 KB
testcase_10 AC 563 ms
62,164 KB
testcase_11 AC 544 ms
61,736 KB
testcase_12 AC 567 ms
61,932 KB
testcase_13 AC 493 ms
61,732 KB
testcase_14 AC 573 ms
62,168 KB
testcase_15 AC 516 ms
61,716 KB
testcase_16 AC 488 ms
61,728 KB
testcase_17 AC 545 ms
62,176 KB
testcase_18 AC 483 ms
61,720 KB
testcase_19 AC 509 ms
61,740 KB
testcase_20 AC 490 ms
61,724 KB
testcase_21 AC 496 ms
61,740 KB
testcase_22 AC 521 ms
61,756 KB
testcase_23 AC 542 ms
61,728 KB
testcase_24 AC 490 ms
61,736 KB
testcase_25 AC 539 ms
62,168 KB
testcase_26 AC 520 ms
61,732 KB
testcase_27 AC 543 ms
61,732 KB
testcase_28 AC 522 ms
61,728 KB
testcase_29 AC 542 ms
62,168 KB
testcase_30 AC 536 ms
61,724 KB
testcase_31 AC 493 ms
61,728 KB
testcase_32 AC 571 ms
61,720 KB
testcase_33 AC 546 ms
61,736 KB
testcase_34 AC 519 ms
61,732 KB
testcase_35 AC 542 ms
61,736 KB
testcase_36 AC 491 ms
61,752 KB
testcase_37 AC 489 ms
61,656 KB
testcase_38 AC 483 ms
61,732 KB
testcase_39 AC 573 ms
62,200 KB
testcase_40 AC 518 ms
61,736 KB
testcase_41 AC 487 ms
61,732 KB
testcase_42 AC 564 ms
61,732 KB
testcase_43 AC 485 ms
61,736 KB
testcase_44 AC 564 ms
62,164 KB
testcase_45 AC 543 ms
61,728 KB
testcase_46 AC 543 ms
61,740 KB
testcase_47 AC 491 ms
61,720 KB
testcase_48 AC 491 ms
61,736 KB
testcase_49 AC 495 ms
61,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.random.Random
fun main() {
    val N = readln().toInt()
    val (A, B) = buildList(N) {
        repeat(N) {
            val (a, b) = readln().split(' ').map { it.toLong() }
            add(Pair(a, b))
        }
    }.unzip()
    var optimalQueries = listOf<Pair<Int, Int>>()
    var minCost = 500_000_000_000_000_000L
    repeat(10000) {
        val copiedA = A.toMutableList()
        val copiedB = B.toMutableList()
        val queries = mutableListOf<Pair<Int, Int>>()
        repeat(50) {
            val u = Random.nextInt(N)
            val v = Random.nextInt(N - 1).let { if (it < u) it else it + 1 }
            queries.add(Pair(u, v))
            copiedA[u] = (copiedA[u] + copiedA[v]) / 2
            copiedA[v] = copiedA[u]
            copiedB[u] = (copiedB[u] + copiedB[v]) / 2
            copiedB[v] = copiedB[u]
        }
        val cost = Math.max(Math.abs(copiedA[0] - 500_000_000_000_000_000L), Math.abs(copiedB[0] - 500_000_000_000_000_000L))
        if (cost < minCost) {
            optimalQueries = queries
            minCost = cost
        }
    }
    println(optimalQueries.size)
    println(optimalQueries.joinToString("\n") { (u, v) -> "${u + 1} ${v + 1}" })
}
0