結果

問題 No.455 冬の大三角
ユーザー qszhuqszhu
提出日時 2022-10-08 19:57:51
言語 Kotlin
(1.9.23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,326 bytes
コンパイル時間 15,825 ms
コンパイル使用メモリ 456,812 KB
実行使用メモリ 55,964 KB
最終ジャッジ日時 2024-06-22 22:32:28
合計ジャッジ時間 37,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
55,612 KB
testcase_01 AC 355 ms
55,640 KB
testcase_02 AC 331 ms
55,632 KB
testcase_03 AC 343 ms
55,696 KB
testcase_04 AC 332 ms
55,456 KB
testcase_05 AC 327 ms
55,492 KB
testcase_06 AC 323 ms
55,612 KB
testcase_07 AC 332 ms
55,712 KB
testcase_08 AC 378 ms
55,964 KB
testcase_09 AC 334 ms
55,692 KB
testcase_10 AC 325 ms
55,448 KB
testcase_11 AC 320 ms
55,640 KB
testcase_12 AC 329 ms
55,576 KB
testcase_13 AC 331 ms
55,592 KB
testcase_14 AC 331 ms
55,556 KB
testcase_15 AC 317 ms
55,620 KB
testcase_16 AC 340 ms
55,632 KB
testcase_17 AC 339 ms
55,744 KB
testcase_18 WA -
testcase_19 AC 349 ms
55,612 KB
testcase_20 AC 328 ms
55,612 KB
testcase_21 AC 346 ms
55,652 KB
testcase_22 AC 344 ms
55,536 KB
testcase_23 AC 327 ms
55,632 KB
testcase_24 AC 328 ms
55,672 KB
testcase_25 AC 328 ms
55,512 KB
testcase_26 AC 307 ms
55,784 KB
testcase_27 AC 311 ms
55,508 KB
testcase_28 AC 333 ms
55,564 KB
testcase_29 AC 356 ms
55,696 KB
testcase_30 AC 341 ms
55,616 KB
testcase_31 AC 318 ms
55,564 KB
testcase_32 AC 333 ms
55,836 KB
testcase_33 AC 370 ms
55,888 KB
testcase_34 AC 335 ms
55,676 KB
testcase_35 AC 378 ms
55,876 KB
testcase_36 AC 348 ms
55,724 KB
testcase_37 AC 331 ms
55,700 KB
testcase_38 AC 337 ms
55,612 KB
testcase_39 AC 355 ms
55,560 KB
testcase_40 AC 354 ms
55,684 KB
testcase_41 AC 337 ms
55,760 KB
testcase_42 AC 334 ms
55,748 KB
testcase_43 WA -
testcase_44 AC 326 ms
55,712 KB
testcase_45 AC 365 ms
55,776 KB
testcase_46 AC 368 ms
55,680 KB
testcase_47 AC 344 ms
55,560 KB
testcase_48 AC 331 ms
55,704 KB
testcase_49 AC 334 ms
55,572 KB
testcase_50 AC 325 ms
55,536 KB
testcase_51 AC 346 ms
55,572 KB
testcase_52 AC 330 ms
55,788 KB
testcase_53 AC 315 ms
55,632 KB
testcase_54 AC 324 ms
55,756 KB
testcase_55 AC 335 ms
55,608 KB
testcase_56 AC 341 ms
55,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.random.Random
import kotlin.system.exitProcess

val br = System.`in`.bufferedReader()

fun readLine(): String? = br.readLine()
fun readString() = readLine()!!
fun readStrings() = readLine()?.split(" ")?.filter { it.isNotEmpty() } ?: listOf()
fun readInts() = readStrings().map { it.toInt() }.toIntArray()

const val MAX_STACK_SIZE: Long = 128 * 1024 * 1024

fun main() {
    val thread = Thread(null, ::run, "solve", MAX_STACK_SIZE)
    thread.setUncaughtExceptionHandler { _, e -> e.printStackTrace(); exitProcess(1) }
    thread.start()
}

fun run() {
    val (H, W) = readInts()
    val S = Array(H) { readString().toCharArray() }
    output(solve(H, W, S))
}

fun solve(H: Int, W: Int, S: Array<CharArray>): Array<CharArray> {
    while (true) {
        val r = Random.nextInt(H)
        val c = Random.nextInt(W)
        if (S[r][c] == '*') continue

        var sameCol = 0
        for (r0 in 0 until H) {
            if (S[r0][c] == '*') sameCol++
        }
        if (sameCol > 1) continue

        var sameRow = 0
        for (c0 in 0 until W) {
            if (S[r][c0] == '*') sameRow++
        }
        if (sameRow > 1) continue

        S[r][c] = '*'
        return S
    }
}

fun output(res: Array<CharArray>) =
    res.joinToString("\n") { it.joinToString("") }
        .apply { println(this) }
0