結果
問題 | No.43 野球の試合 |
ユーザー | Grenache |
提出日時 | 2015-11-03 18:08:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,517 bytes |
コンパイル時間 | 3,605 ms |
コンパイル使用メモリ | 77,816 KB |
実行使用メモリ | 58,420 KB |
最終ジャッジ日時 | 2024-09-13 12:10:41 |
合計ジャッジ時間 | 6,282 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
54,228 KB |
testcase_01 | AC | 135 ms
54,200 KB |
testcase_02 | AC | 134 ms
54,008 KB |
testcase_03 | AC | 134 ms
53,992 KB |
testcase_04 | AC | 157 ms
54,352 KB |
testcase_05 | AC | 158 ms
54,296 KB |
testcase_06 | WA | - |
testcase_07 | AC | 186 ms
58,420 KB |
testcase_08 | WA | - |
testcase_09 | AC | 172 ms
56,164 KB |
testcase_10 | WA | - |
ソースコード
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(); } for (int i = 0; i < n; i++) { if (s[0][i] == '-') { s[0][i] = 'o'; s[i][0] = 'x'; } } 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]++; } } } out: for (int j = 1; j < n; j++) { int cnttmp = cnt[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) { continue out; } else if (s[j][k] == '-' && win) { cnttmp++; } } cnt[j] = cnttmp; } int cnt0 = cnt[0]; Arrays.sort(cnt); int j; for (j = n - 1; j >= 0; j--) { if (cnt[j] <= cnt0) { break; } } return n - j; } }