結果
問題 | No.43 野球の試合 |
ユーザー | tsunabit |
提出日時 | 2019-09-09 11:10:12 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,341 bytes |
コンパイル時間 | 4,320 ms |
コンパイル使用メモリ | 77,564 KB |
実行使用メモリ | 45,456 KB |
最終ジャッジ日時 | 2024-06-28 11:01:23 |
合計ジャッジ時間 | 11,153 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
41,416 KB |
testcase_01 | AC | 123 ms
41,188 KB |
testcase_02 | AC | 127 ms
41,224 KB |
testcase_03 | AC | 126 ms
41,120 KB |
testcase_04 | AC | 115 ms
40,296 KB |
testcase_05 | AC | 125 ms
41,080 KB |
testcase_06 | AC | 180 ms
45,456 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
import java.util.*; import java.io.*; import java.math.*; public class No43 { public static int ans = 99; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine()); String[][] s = new String[n][n]; for(int i = 0; i < n; i++) { s[i] = sc.nextLine().split(""); } dfs(s, n); System.out.println(ans); } public static void dfs(String[][] s, int n) { String[][] map1 = copy(s); for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { if("-".equals(map1[i][j])) { map1[i][j] = "o"; map1[j][i] = "x"; dfs(map1, n); map1[i][j] = "x"; map1[j][i] = "o"; dfs(map1, n); } } } int[] kati = new int[n]; // int count = 0; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { if("o".equals(map1[i][j])) kati[i]++; } // kati[i] = count; // count = 0; } int temp = kati[0]; int r = 1; int ima = 99; Arrays.sort(kati); for(int i = n-1; i >= 0; i--) { if(temp < kati[i] && ima > kati[i]) { r++; ima = kati[i]; } } if(ans > r) { ans = r; } } static String[][] copy(String[][] from){ int aa = from[0].length; String[][] to = new String[aa][aa]; for(int i=0;i<aa;i++){ for(int j=0;j<aa;j++){ to[i][j]=from[i][j]; } } return to; } }