結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー yakamotoyakamoto
提出日時 2021-02-19 22:26:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 514 ms / 3,153 ms
コード長 4,136 bytes
コンパイル時間 16,029 ms
コンパイル使用メモリ 439,608 KB
実行使用メモリ 61,628 KB
最終ジャッジ日時 2023-10-15 03:04:41
合計ジャッジ時間 54,456 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
54,068 KB
testcase_01 AC 282 ms
54,132 KB
testcase_02 AC 279 ms
50,364 KB
testcase_03 AC 282 ms
53,920 KB
testcase_04 AC 291 ms
53,916 KB
testcase_05 AC 290 ms
53,884 KB
testcase_06 AC 463 ms
60,116 KB
testcase_07 AC 350 ms
54,816 KB
testcase_08 AC 465 ms
60,024 KB
testcase_09 AC 504 ms
61,412 KB
testcase_10 AC 358 ms
54,776 KB
testcase_11 AC 471 ms
60,280 KB
testcase_12 AC 301 ms
52,648 KB
testcase_13 AC 461 ms
60,060 KB
testcase_14 AC 489 ms
61,228 KB
testcase_15 AC 341 ms
54,512 KB
testcase_16 AC 461 ms
60,140 KB
testcase_17 AC 452 ms
60,208 KB
testcase_18 AC 459 ms
60,036 KB
testcase_19 AC 458 ms
60,276 KB
testcase_20 AC 272 ms
50,452 KB
testcase_21 AC 508 ms
61,628 KB
testcase_22 AC 477 ms
60,520 KB
testcase_23 AC 300 ms
52,684 KB
testcase_24 AC 453 ms
60,136 KB
testcase_25 AC 328 ms
54,468 KB
testcase_26 AC 461 ms
60,032 KB
testcase_27 AC 449 ms
60,088 KB
testcase_28 AC 334 ms
54,404 KB
testcase_29 AC 514 ms
61,420 KB
testcase_30 AC 336 ms
54,516 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:167:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: LongArray) {
          ^
Main.kt:171:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: IntArray) {
          ^
Main.kt:175:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: BooleanArray) {
          ^
Main.kt:179:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")}
          ^
Main.kt:181:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<LongArray>) {
          ^
Main.kt:188:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<IntArray>) {
          ^
Main.kt:195:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<BooleanArray>) {
          ^
Main.kt:212:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()}
          ^

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.lang.AssertionError
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  private val reader = BufferedReader(InputStreamReader(stream), 32768)

  private val W = ni()
  private val H = ni()
  private val X = ni()
  fun solve() {
    if (!solve2()) out.println(-1)
  }

  fun solve2(): Boolean {
    if (X > 36) return false

    val ans = Array(H){IntArray(W)}
    fun build(H: Int, W: Int, A: IntArray, dst: Array<IntArray>) {
      for (row in 0 until H) {
        for (col in 0 until W) {
          if (row%3 == 2 || col%3 == 2) continue
          dst[row][col] = A[row%3 + col%3*2]
        }
      }
    }

    val H_test = if (H > 10) H%3 + 3 else H
    val W_test = if (W > 10) W%3 + 3 else W
    val ans_test = Array(H_test){IntArray(W_test)}
    fun test(H: Int, W: Int, dst: Array<IntArray>) = run {
      var ok = true
      for (i in 0 until H) {
        for (j in 0 until W) {
          var sum = 0
          for (di in -1 .. 1) {
            for (dj in -1 .. 1) {
              if (i+di in 0 until H && j+dj in 0 until W) {
                sum += dst[i+di][j+dj]
              }
            }
          }
          ok = ok && sum == X
        }
      }
      ok
    }

    for (i in 0 .. 9) {
      for (j in 0 .. 9) {
        for (k in 0 .. 9) {
          for (l in 0 .. 9) {
            if (i + j + k + l != X) continue
            val A = intArrayOf(i, j, k, l)
            build(H_test, W_test, A, ans_test)

            if (test(H_test, W_test, ans_test)) {
              build(H, W, A, ans)
              assert(test(H, W, ans))
              for (itr in ans) {
                out.println(itr.joinToString(""))
              }
              return true
            }
          }
        }
      }
    }

    return false
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return IntArray(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private inline fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private inline fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private inline fun debug(a: BooleanArray) {
    debug { toString(a) }
  }

  private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")}

  private inline fun debugDim(A: Array<LongArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private inline fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private inline fun debugDim(A: Array<BooleanArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }

  private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()}
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0