結果
問題 | No.43 野球の試合 |
ユーザー | Grenache |
提出日時 | 2015-11-03 18:53:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 223 ms / 5,000 ms |
コード長 | 1,571 bytes |
コンパイル時間 | 3,630 ms |
コンパイル使用メモリ | 78,456 KB |
実行使用メモリ | 57,028 KB |
最終ジャッジ日時 | 2024-09-13 12:11:21 |
合計ジャッジ時間 | 5,864 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,028 KB |
testcase_01 | AC | 133 ms
54,412 KB |
testcase_02 | AC | 132 ms
54,180 KB |
testcase_03 | AC | 133 ms
54,284 KB |
testcase_04 | AC | 148 ms
54,316 KB |
testcase_05 | AC | 152 ms
54,268 KB |
testcase_06 | AC | 182 ms
56,748 KB |
testcase_07 | AC | 223 ms
56,444 KB |
testcase_08 | AC | 163 ms
57,028 KB |
testcase_09 | AC | 152 ms
56,216 KB |
testcase_10 | AC | 165 ms
56,816 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main_yukicoder43 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); char[][] s = new char[n][]; for (int i = 0; i < n; i++) { s[i] = sc.next().toCharArray(); } int m = n * (n - 1) / 2; int min = Integer.MAX_VALUE; for (int i = 0; i < 0x1 << m; i++) { min = Math.min(min, getMin(s, i)); } System.out.println(min); sc.close(); } private static int getMin(char[][] s, int i) { int n = s[0].length; int[] cnt = new int[n]; for (int j = 0; j < n; j++) { for (int k = 0; k < n; k++) { if (j == k) { continue; } if (s[j][k] == 'o') { cnt[j]++; } } } for (int j = 0; j < n; j++) { for (int k = j + 1; k < n; k++) { int tmp = (n - 1 - j) * (n - 1 - j - 1) / 2 + n - 1 - k; boolean win = (i & 0x1 << tmp) != 0; if (s[j][k] == 'x' && win) { return Integer.MAX_VALUE; } else if (s[j][k] == 'o' && !win) { return Integer.MAX_VALUE; } else if (s[j][k] == '-' && win) { cnt[j]++; } else if (s[j][k] == '-' && !win) { cnt[k]++; } } } int cnt0 = cnt[0]; Arrays.sort(cnt); int j; int prev = -1; int ret = 1; for (j = n - 1; j >= 0; j--) { if (prev == cnt[j]) { } else { if (cnt[j] <= cnt0) { break; } prev = cnt[j]; ret++; } } return ret; } }