結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー 箱星箱星
提出日時 2021-01-22 22:11:17
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,415 bytes
コンパイル時間 14,883 ms
コンパイル使用メモリ 447,244 KB
実行使用メモリ 63,712 KB
最終ジャッジ日時 2024-06-08 15:15:14
合計ジャッジ時間 35,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
52,180 KB
testcase_01 AC 294 ms
52,044 KB
testcase_02 AC 293 ms
52,048 KB
testcase_03 AC 299 ms
52,168 KB
testcase_04 AC 293 ms
52,108 KB
testcase_05 AC 302 ms
52,160 KB
testcase_06 AC 303 ms
52,348 KB
testcase_07 AC 293 ms
52,216 KB
testcase_08 AC 292 ms
52,028 KB
testcase_09 AC 293 ms
52,192 KB
testcase_10 AC 294 ms
52,232 KB
testcase_11 AC 296 ms
52,040 KB
testcase_12 AC 296 ms
52,240 KB
testcase_13 AC 294 ms
52,148 KB
testcase_14 AC 298 ms
52,164 KB
testcase_15 AC 297 ms
52,184 KB
testcase_16 AC 297 ms
52,056 KB
testcase_17 AC 302 ms
52,076 KB
testcase_18 AC 297 ms
52,100 KB
testcase_19 AC 292 ms
52,216 KB
testcase_20 AC 301 ms
52,240 KB
testcase_21 AC 295 ms
52,064 KB
testcase_22 AC 296 ms
52,112 KB
testcase_23 AC 412 ms
54,520 KB
testcase_24 AC 378 ms
55,272 KB
testcase_25 AC 644 ms
63,668 KB
testcase_26 AC 327 ms
53,336 KB
testcase_27 AC 342 ms
53,192 KB
testcase_28 AC 594 ms
63,368 KB
testcase_29 AC 371 ms
53,836 KB
testcase_30 AC 402 ms
54,436 KB
testcase_31 AC 402 ms
54,656 KB
testcase_32 AC 363 ms
53,384 KB
testcase_33 AC 647 ms
63,628 KB
testcase_34 AC 603 ms
63,532 KB
testcase_35 AC 638 ms
63,536 KB
testcase_36 AC 590 ms
63,524 KB
testcase_37 AC 598 ms
63,568 KB
testcase_38 AC 609 ms
63,712 KB
testcase_39 AC 611 ms
63,592 KB
testcase_40 AC 604 ms
63,508 KB
testcase_41 AC 624 ms
63,640 KB
testcase_42 AC 586 ms
63,492 KB
testcase_43 AC 296 ms
52,028 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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)) {
        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