結果

問題 No.455 冬の大三角
ユーザー qszhuqszhu
提出日時 2022-10-08 20:10:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 2,072 bytes
コンパイル時間 13,717 ms
コンパイル使用メモリ 457,240 KB
実行使用メモリ 60,112 KB
最終ジャッジ日時 2024-06-22 22:42:37
合計ジャッジ時間 34,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
55,784 KB
testcase_01 AC 294 ms
60,112 KB
testcase_02 AC 302 ms
55,744 KB
testcase_03 AC 294 ms
55,708 KB
testcase_04 AC 292 ms
55,800 KB
testcase_05 AC 291 ms
55,596 KB
testcase_06 AC 296 ms
55,804 KB
testcase_07 AC 296 ms
55,624 KB
testcase_08 AC 326 ms
55,756 KB
testcase_09 AC 294 ms
55,728 KB
testcase_10 AC 301 ms
55,608 KB
testcase_11 AC 301 ms
55,828 KB
testcase_12 AC 297 ms
55,632 KB
testcase_13 AC 293 ms
55,912 KB
testcase_14 AC 301 ms
55,708 KB
testcase_15 AC 293 ms
55,620 KB
testcase_16 AC 293 ms
55,728 KB
testcase_17 AC 301 ms
55,720 KB
testcase_18 AC 294 ms
55,904 KB
testcase_19 AC 291 ms
55,720 KB
testcase_20 AC 303 ms
55,808 KB
testcase_21 AC 305 ms
55,736 KB
testcase_22 AC 295 ms
55,776 KB
testcase_23 AC 294 ms
55,668 KB
testcase_24 AC 304 ms
55,744 KB
testcase_25 AC 297 ms
55,504 KB
testcase_26 AC 298 ms
55,496 KB
testcase_27 AC 296 ms
55,908 KB
testcase_28 AC 294 ms
55,776 KB
testcase_29 AC 323 ms
55,888 KB
testcase_30 AC 325 ms
55,680 KB
testcase_31 AC 313 ms
55,880 KB
testcase_32 AC 301 ms
55,768 KB
testcase_33 AC 322 ms
55,876 KB
testcase_34 AC 294 ms
55,916 KB
testcase_35 AC 326 ms
55,692 KB
testcase_36 AC 304 ms
55,716 KB
testcase_37 AC 297 ms
55,508 KB
testcase_38 AC 310 ms
55,624 KB
testcase_39 AC 343 ms
55,776 KB
testcase_40 AC 329 ms
55,732 KB
testcase_41 AC 306 ms
55,612 KB
testcase_42 AC 303 ms
55,900 KB
testcase_43 AC 294 ms
55,708 KB
testcase_44 AC 296 ms
55,848 KB
testcase_45 AC 316 ms
55,748 KB
testcase_46 AC 308 ms
55,784 KB
testcase_47 AC 301 ms
55,752 KB
testcase_48 AC 299 ms
55,856 KB
testcase_49 AC 292 ms
55,700 KB
testcase_50 AC 294 ms
55,616 KB
testcase_51 AC 306 ms
55,916 KB
testcase_52 AC 362 ms
55,612 KB
testcase_53 AC 321 ms
55,740 KB
testcase_54 AC 311 ms
55,672 KB
testcase_55 AC 325 ms
55,764 KB
testcase_56 AC 341 ms
55,808 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

        var sameDiag = 0
        var r0 = r
        var c0 = c
        while (r0 >= 0 && c0 >= 0) {
            if (S[r0][c0] == '*') sameDiag++
            r0--
            c0--
        }
        r0 = r
        c0 = c
        while (r0 < H && c0 < W) {
            if (S[r0][c0] == '*') sameDiag++
            r0++
            c0++
        }
        if (sameDiag > 1) continue

        sameDiag = 0
        r0 = r
        c0 = c
        while (r0 >= 0 && c0 < W) {
            if (S[r0][c0] == '*') sameDiag++
            r0--
            c0++
        }
        r0 = r
        c0 = c
        while (r0 < H && c0 >= 0) {
            if (S[r0][c0] == '*') sameDiag++
            r0++
            c0--
        }
        if (sameDiag > 1) continue

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

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