結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー 箱星箱星
提出日時 2021-01-22 22:13:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 1,444 bytes
コンパイル時間 14,764 ms
コンパイル使用メモリ 447,020 KB
実行使用メモリ 63,908 KB
最終ジャッジ日時 2024-06-08 15:21:06
合計ジャッジ時間 38,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
52,348 KB
testcase_01 AC 309 ms
52,264 KB
testcase_02 AC 311 ms
52,400 KB
testcase_03 AC 311 ms
52,556 KB
testcase_04 AC 309 ms
52,192 KB
testcase_05 AC 309 ms
52,444 KB
testcase_06 AC 312 ms
52,396 KB
testcase_07 AC 317 ms
52,324 KB
testcase_08 AC 310 ms
52,324 KB
testcase_09 AC 312 ms
52,240 KB
testcase_10 AC 305 ms
52,336 KB
testcase_11 AC 314 ms
52,272 KB
testcase_12 AC 314 ms
52,248 KB
testcase_13 AC 309 ms
52,332 KB
testcase_14 AC 318 ms
52,524 KB
testcase_15 AC 318 ms
52,364 KB
testcase_16 AC 310 ms
52,364 KB
testcase_17 AC 311 ms
52,088 KB
testcase_18 AC 309 ms
52,360 KB
testcase_19 AC 312 ms
52,296 KB
testcase_20 AC 312 ms
52,320 KB
testcase_21 AC 311 ms
52,396 KB
testcase_22 AC 313 ms
52,344 KB
testcase_23 AC 407 ms
54,724 KB
testcase_24 AC 403 ms
55,732 KB
testcase_25 AC 632 ms
63,648 KB
testcase_26 AC 348 ms
53,752 KB
testcase_27 AC 352 ms
53,228 KB
testcase_28 AC 594 ms
63,680 KB
testcase_29 AC 385 ms
54,104 KB
testcase_30 AC 411 ms
54,740 KB
testcase_31 AC 409 ms
54,724 KB
testcase_32 AC 388 ms
53,716 KB
testcase_33 AC 645 ms
63,880 KB
testcase_34 AC 599 ms
63,596 KB
testcase_35 AC 648 ms
63,816 KB
testcase_36 AC 603 ms
63,668 KB
testcase_37 AC 604 ms
63,888 KB
testcase_38 AC 602 ms
63,692 KB
testcase_39 AC 603 ms
63,532 KB
testcase_40 AC 613 ms
63,748 KB
testcase_41 AC 657 ms
63,764 KB
testcase_42 AC 610 ms
63,908 KB
testcase_43 AC 308 ms
52,296 KB
testcase_44 AC 528 ms
63,632 KB
testcase_45 AC 311 ms
52,100 KB
testcase_46 AC 534 ms
63,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextLong() }
    val b = Array(n) { Array(n) { nextLong() } }
    var ans = -1L to BooleanArray(n) { false }
    for (i in 0 until 1.shl(n)) {
        if (i == 0) continue
        val choice = BooleanArray(n) { false }
        for (j in 0 until n) {
            if (i.shr(j) % 2 != 0) {
                choice[j] = true
            }
        }
        var score = 0L
        for (j in 0 until n) {
            if (choice[j]) score += a[j]
        }
        for (j in 0 until n) {
            for (k in j + 1 until n) {
                if (choice[j] && choice[k]) {
                    score += b[j][k]
                }
            }
        }
        if (ans.first < score) {
            ans = score to choice
        }
    }
    println(ans.first)
    println((0 until n).filter { ans.second[it] }.map { it + 1 }.joinToString(" "))
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()!!
fun nextDouble() = next().toDouble()
// endregion
0