結果

問題 No.43 野球の試合
ユーザー purple_jwlpurple_jwl
提出日時 2016-10-27 23:19:21
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 7,829 ms
コンパイル使用メモリ 259,624 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-06-29 19:43:08
合計ジャッジ時間 18,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 775 ms
62,864 KB
testcase_01 AC 795 ms
62,832 KB
testcase_02 AC 801 ms
62,640 KB
testcase_03 AC 802 ms
62,892 KB
testcase_04 WA -
testcase_05 AC 799 ms
62,960 KB
testcase_06 AC 771 ms
62,708 KB
testcase_07 AC 803 ms
62,692 KB
testcase_08 AC 781 ms
62,792 KB
testcase_09 AC 784 ms
62,724 KB
testcase_10 AC 779 ms
62,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Main {
  def rec(idx: Int, n: Int, s: Array[Array[Char]]): Int = {
    if (idx == n * n) {
      val winCount = s.map { (ss) =>
        ss.filter(_ == 'o').size
      }

      var rank = 1
      for (i <- (0 to n).reverse) {
        if (winCount(0) == i) return rank
        if (winCount.filter(_ == i).size != 0) rank += 1
      }
    }

    val x = idx % n
    val y = idx / n

    if (s(y)(x) == '-') {
      s(y)(x) = 'o'
      s(x)(y) = 'x'
      val res1 = rec(idx + 1, n, s)
      s(y)(x) = 'x'
      s(x)(y) = 'o'
      val res2 = rec(idx + 1, n, s)
      return Math.min(res1, res2)
    } else {
      return rec(idx + 1, n, s)
    }
  }

  def main(args: Array[String]): Unit = {
    val n = StdIn.readInt
    val s = Array.fill(n)(StdIn.readLine.toArray)
    println(rec(0, n, s))
  }
}
0