結果
問題 | No.43 野球の試合 |
ユーザー | scache |
提出日時 | 2014-12-01 15:03:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,071 bytes |
コンパイル時間 | 3,794 ms |
コンパイル使用メモリ | 77,956 KB |
実行使用メモリ | 41,372 KB |
最終ジャッジ日時 | 2024-06-11 07:32:40 |
合計ジャッジ時間 | 6,056 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
41,180 KB |
testcase_01 | AC | 136 ms
41,356 KB |
testcase_02 | AC | 137 ms
41,124 KB |
testcase_03 | AC | 131 ms
41,092 KB |
testcase_04 | AC | 136 ms
41,372 KB |
testcase_05 | AC | 133 ms
41,232 KB |
testcase_06 | AC | 138 ms
41,316 KB |
testcase_07 | AC | 148 ms
41,352 KB |
testcase_08 | AC | 132 ms
41,200 KB |
testcase_09 | AC | 121 ms
40,032 KB |
testcase_10 | WA | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main43 { public static void main(String[] args) { Main43 p = new Main43(); } public Main43() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] isWon = new int[n][n]; for(int i=0;i<isWon.length;i++){ String s = sc.next(); for(int j=0;j<isWon[i].length;j++){ if(s.charAt(j)=='o'){ isWon[i][j] = 1; isWon[j][i] = -1; }else if(s.charAt(j)=='x'){ isWon[i][j] = -1; isWon[j][i] = 1; }else if(s.charAt(j) == '#'){ isWon[i][j] = -1; } } } solve(isWon); } public void solve(int[][] isWon) { for(int i=1;i<isWon[0].length;i++){ if(isWon[0][i] == 0){ isWon[0][i] = 1; isWon[i][0] = -1; } } System.out.println(rec(isWon, 0, 0)); } private int rec(int[][] isWon, int cur1, int cur2){ if(cur1==isWon.length) return calcRank(isWon); int res = Integer.MAX_VALUE; int ncur1 = 0; int ncur2 = 0; if(cur2+1 < isWon.length){ ncur1 = cur1; ncur2 = cur2+1; }else{ ncur1 = cur1+1; ncur2 = ncur1; } if(isWon[cur1][cur2] == 0){ isWon[cur1][cur2] = 1; isWon[cur2][cur1] = -1; res = Math.min(res, rec(isWon, ncur1, ncur2)); isWon[cur1][cur2] = -1; isWon[cur2][cur1] = 1; res = Math.min(res, rec(isWon, ncur1, ncur2)); isWon[cur1][cur2] = 0; isWon[cur2][cur1] = 0; }else{ res = Math.min(res, rec(isWon, ncur1, ncur2)); } return res; } private int calcRank(int[][] isWon){ int[] w = new int[isWon.length]; for(int i=0;i<isWon.length;i++){ for(int j=0;j<isWon[i].length;j++){ if(isWon[i][j]==1) w[i]++; } } int playerWin = w[0]; Arrays.sort(w); int last = w[w.length-1]; int rank = 1; int res = -1; for(int i=w.length-1;i>=0;i--){ if(last != w[i]){ rank++; last = w[i]; } if(w[i] == playerWin){ res = rank; break; } } return res; } }