結果

問題 No.13 囲みたい!
ユーザー noriocnorioc
提出日時 2016-02-19 06:49:37
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,352 ms / 5,000 ms
コード長 1,046 bytes
コンパイル時間 9,752 ms
コンパイル使用メモリ 269,940 KB
実行使用メモリ 75,992 KB
最終ジャッジ日時 2024-11-16 17:11:32
合計ジャッジ時間 30,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,036 ms
64,452 KB
testcase_01 AC 977 ms
64,696 KB
testcase_02 AC 966 ms
64,728 KB
testcase_03 AC 1,286 ms
73,944 KB
testcase_04 AC 1,273 ms
75,484 KB
testcase_05 AC 1,314 ms
73,692 KB
testcase_06 AC 1,269 ms
75,992 KB
testcase_07 AC 1,352 ms
75,084 KB
testcase_08 AC 1,309 ms
74,464 KB
testcase_09 AC 1,309 ms
73,376 KB
testcase_10 AC 1,142 ms
65,064 KB
testcase_11 AC 1,321 ms
72,004 KB
testcase_12 AC 1,023 ms
64,900 KB
testcase_13 AC 1,150 ms
65,172 KB
testcase_14 AC 1,208 ms
64,888 KB
testcase_15 AC 947 ms
64,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math._
import collection.mutable.Stack

object Main {
  def calc(rows: Int, cols: Int, g: Array[Array[Int]]): Boolean = {
    val used = Array.fill(rows, cols)(false)
    for (i <- 0 to rows-1; j <- 0 to cols-1 if !used(i)(j)) {
      val num = g(i)(j)
      val s = new Stack[(Int, Int, Int, Int)]
      s.push((i, j, -1, -1))
      while (!s.isEmpty) {
        val (r, c, pr, pc) = s.pop

        if (used(r)(c)) return true

        used(r)(c) = true
        for ((dr, dc) <- Array((1, 0), (0, 1), (-1, 0), (0, -1))) {
          val r2 = r + dr
          val c2 = c + dc
          if (0 <= r2 && r2 < rows && 0 <= c2 && c2 < cols) {
            if (g(r2)(c2) == num && (r2, c2) != (pr, pc)) {
              s.push((r2, c2, r, c))
            }
          }
        }
      }
    }
    false
  }

  def main(args: Array[String]) = {
    val sc = new java.util.Scanner(System.in)
    val W, H = sc.nextInt
    val g = Array.fill(H, W)(sc.nextInt)
    if (calc(H, W, g))
      println("possible")
    else
      println("impossible")
  }
}
0