結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー yakamotoyakamoto
提出日時 2021-02-19 22:13:18
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,780 bytes
コンパイル時間 15,980 ms
コンパイル使用メモリ 436,644 KB
実行使用メモリ 63,920 KB
最終ジャッジ日時 2023-10-15 02:13:18
合計ジャッジ時間 32,009 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
56,916 KB
testcase_01 AC 275 ms
53,824 KB
testcase_02 AC 259 ms
50,440 KB
testcase_03 AC 274 ms
53,860 KB
testcase_04 AC 276 ms
53,692 KB
testcase_05 AC 267 ms
54,076 KB
testcase_06 AC 1,196 ms
62,768 KB
testcase_07 TLE -
testcase_08 AC 876 ms
62,304 KB
testcase_09 TLE -
testcase_10 AC 3,033 ms
55,868 KB
testcase_11 AC 873 ms
62,308 KB
testcase_12 TLE -
testcase_13 AC 697 ms
62,208 KB
testcase_14 TLE -
testcase_15 AC 3,080 ms
55,988 KB
testcase_16 AC 438 ms
60,204 KB
testcase_17 AC 440 ms
59,980 KB
testcase_18 AC 444 ms
60,104 KB
testcase_19 AC 446 ms
60,272 KB
testcase_20 AC 252 ms
50,400 KB
testcase_21 AC 437 ms
59,996 KB
testcase_22 AC 937 ms
62,408 KB
testcase_23 AC 3,088 ms
55,988 KB
testcase_24 AC 679 ms
63,920 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:158: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:162: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:166: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:170: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:172: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:179: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:186: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:203: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 test() = 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 += ans[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)
            for (row in 0 until H) {
              for (col in 0 until W) {
                if (row%3 == 2 || col%3 == 2) continue
                ans[row][col] = A[row%3 + col%3*2]
              }
            }

            if (test()) {
              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