結果
問題 | No.43 野球の試合 |
ユーザー | nanophoto12 |
提出日時 | 2014-10-29 23:25:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,328 bytes |
コンパイル時間 | 929 ms |
コンパイル使用メモリ | 112,760 KB |
実行使用メモリ | 25,828 KB |
最終ジャッジ日時 | 2024-06-09 17:43:44 |
合計ジャッジ時間 | 1,709 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Globalization; class Program { public static void Main(string[] args) { var n = int.Parse(Console.ReadLine()); string[] texts = new string[n]; for (int i = 0; i < n; i++) { texts[i] = Console.ReadLine(); } char[,] grid = new char[n,n]; for (int i = 0; i < n; i++) { for (int k = 0; k < n; k++) { grid[i, k] = texts[i][k]; } } var max = Dfs(grid, 0, 0, n); Console.WriteLine(max.ToString(CultureInfo.InvariantCulture)); } private static int Dfs(char[,] grid, int x, int y, int n) { if (x == n && y == n ) { var winCounts = new int[n]; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (grid[y, x] == 'o') { winCounts[y]++; } } } var values = new Tuple<int, int>[n]; for (int i = 0; i < n; i++) { values[i] = new Tuple<int, int>(i, winCounts[i]); } Array.Sort(values, (tuple, tuple1) => tuple1.Item2.CompareTo(tuple.Item1)); int rank = 0; int previous = int.MaxValue; for (int i = 0; i < n; i++) { if (previous > values[i].Item2) { rank++; } if (values[i].Item1 == 0) { return rank; } previous = values[i].Item2; } throw new Exception(); } if (x == n) { return Dfs(grid, 0, y + 1, n); } if (grid[y, x] != '-') { return Dfs(grid, x + 1, y, n); } grid[y, x] = 'o'; grid[x, y] = 'x'; int first = Dfs(grid, x + 1, y, n); grid[y, x] = 'x'; grid[x, y] = 'o'; int second = Dfs(grid, x + 1, y, n); grid[y, x] = '-'; grid[x, y] = '-'; return Math.Min(first, second); } }