結果

問題 No.455 冬の大三角
ユーザー qszhuqszhu
提出日時 2022-10-08 20:55:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 1,667 bytes
コンパイル時間 13,042 ms
コンパイル使用メモリ 457,512 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-06-22 23:19:50
合計ジャッジ時間 32,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
55,704 KB
testcase_01 AC 299 ms
55,684 KB
testcase_02 AC 293 ms
55,640 KB
testcase_03 AC 294 ms
55,664 KB
testcase_04 AC 292 ms
55,620 KB
testcase_05 AC 297 ms
55,672 KB
testcase_06 AC 290 ms
55,540 KB
testcase_07 AC 308 ms
55,668 KB
testcase_08 AC 317 ms
55,708 KB
testcase_09 AC 287 ms
55,712 KB
testcase_10 AC 298 ms
55,684 KB
testcase_11 AC 292 ms
55,652 KB
testcase_12 AC 286 ms
55,484 KB
testcase_13 AC 283 ms
55,776 KB
testcase_14 AC 314 ms
55,552 KB
testcase_15 AC 313 ms
55,476 KB
testcase_16 AC 306 ms
55,564 KB
testcase_17 AC 313 ms
55,764 KB
testcase_18 AC 309 ms
55,680 KB
testcase_19 AC 309 ms
55,588 KB
testcase_20 AC 307 ms
55,508 KB
testcase_21 AC 298 ms
55,688 KB
testcase_22 AC 289 ms
55,472 KB
testcase_23 AC 289 ms
55,484 KB
testcase_24 AC 285 ms
55,620 KB
testcase_25 AC 296 ms
55,700 KB
testcase_26 AC 293 ms
55,784 KB
testcase_27 AC 286 ms
55,540 KB
testcase_28 AC 286 ms
55,676 KB
testcase_29 AC 315 ms
55,724 KB
testcase_30 AC 311 ms
55,608 KB
testcase_31 AC 303 ms
55,744 KB
testcase_32 AC 290 ms
55,736 KB
testcase_33 AC 315 ms
55,844 KB
testcase_34 AC 297 ms
55,612 KB
testcase_35 AC 308 ms
55,612 KB
testcase_36 AC 302 ms
55,488 KB
testcase_37 AC 310 ms
55,836 KB
testcase_38 AC 313 ms
55,592 KB
testcase_39 AC 316 ms
55,908 KB
testcase_40 AC 318 ms
55,472 KB
testcase_41 AC 305 ms
55,724 KB
testcase_42 AC 298 ms
55,588 KB
testcase_43 AC 297 ms
55,540 KB
testcase_44 AC 288 ms
55,636 KB
testcase_45 AC 335 ms
55,828 KB
testcase_46 AC 302 ms
55,760 KB
testcase_47 AC 301 ms
55,464 KB
testcase_48 AC 301 ms
55,660 KB
testcase_49 AC 281 ms
55,784 KB
testcase_50 AC 297 ms
55,520 KB
testcase_51 AC 286 ms
55,788 KB
testcase_52 AC 290 ms
55,416 KB
testcase_53 AC 282 ms
55,544 KB
testcase_54 AC 287 ms
55,528 KB
testcase_55 AC 289 ms
55,636 KB
testcase_56 AC 289 ms
55,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typealias Vector2 = Pair<Int, Int>

operator fun Vector2.minus(other: Vector2): Vector2 {
    val (x1, y1) = this
    val (x2, y2) = other
    return Vector2(x1 - x2, y1 - y2)
}

infix fun Vector2.cross(other: Vector2): Int {
    val (x1, y1) = this
    val (x2, y2) = other
    return x1 * y2 - y1 * x2
}

fun solve(H: Int, W: Int, S: Array<CharArray>): Array<CharArray> {
    val rows = H
    val cols = W
    val stars = mutableListOf<Pair<Int, Int>>()
    for (r in 0 until rows) {
        for (c in 0 until cols) {
            if (S[r][c] == '*') stars.add(r to c)
        }
    }
    for (r in 0 until rows) {
        for (c in 0 until cols) {
            if (S[r][c] == '*') continue
            val a = stars[1] - stars[0]
            val b = Vector2(r, c) - stars[0]
            if (a cross b == 0) continue
            S[r][c] = '*'
            return S
        }
    }

    return S
}

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