結果
問題 | No.640 76本のトロンボーン |
ユーザー | 37zigen |
提出日時 | 2018-05-30 23:25:00 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 2,000 ms |
コード長 | 1,903 bytes |
コンパイル時間 | 2,773 ms |
コンパイル使用メモリ | 77,748 KB |
実行使用メモリ | 41,684 KB |
最終ジャッジ日時 | 2024-07-20 17:23:35 |
合計ジャッジ時間 | 5,518 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
40,252 KB |
testcase_01 | AC | 109 ms
40,812 KB |
testcase_02 | AC | 109 ms
40,944 KB |
testcase_03 | AC | 111 ms
40,632 KB |
testcase_04 | AC | 101 ms
39,876 KB |
testcase_05 | AC | 113 ms
41,032 KB |
testcase_06 | AC | 136 ms
41,388 KB |
testcase_07 | AC | 126 ms
41,684 KB |
testcase_08 | AC | 127 ms
41,576 KB |
testcase_09 | AC | 135 ms
41,160 KB |
testcase_10 | AC | 133 ms
41,340 KB |
testcase_11 | AC | 138 ms
41,360 KB |
testcase_12 | AC | 124 ms
41,644 KB |
testcase_13 | AC | 106 ms
40,856 KB |
testcase_14 | AC | 134 ms
41,200 KB |
testcase_15 | AC | 100 ms
39,624 KB |
testcase_16 | AC | 96 ms
40,276 KB |
ソースコード
import java.util.Arrays; import java.util.Comparator; import java.util.PriorityQueue; import java.util.Scanner; public class Main { void run() { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); char[][] s = new char[N][N]; for (int i = 0; i < N; ++i) { s[i] = sc.next().toCharArray(); } int ans = 0; { boolean f = true; for (int i = 0; i < N; ++i) { for (int j = 0; j < N; ++j) { if (i == 0 || i == N - 1 || j == 0 || j == N - 1) { f &= s[i][j] == '.'; } } } if (f) ans = 4; } for (int t = 0; t < 2; ++t) { ans = Math.max(solve(s), ans); for (int i = 0; i < N; ++i) { for (int j = i + 1; j < N; ++j) { char tmp = s[i][j]; s[i][j] = s[j][i]; s[j][i] = tmp; } } } System.out.println(ans); } int solve(char[][] s) { int N = s.length; int ret = 0; for (int i = 0; i < N; i += N - 1) { for (int d = 0; d <= 1; ++d) { char[][] s2 = new char[N][N]; for (int j = 0; j < N; ++j) for (int k = 0; k < N; ++k) s2[j][k] = s[j][k]; boolean flag = true; ret = Math.max(ret, go(s2)); for (int j = d; j < N - 1 + d; ++j) { flag &= s2[i][j] == '.'; s2[i][j] = '#'; } ret = Math.max(ret, (flag ? 1 : 0) + go(s2)); } } return ret; } int go(char[][] s) { int ret = 0; int N = s.length; for (int i = 0; i < N; ++i) { boolean flag = true; for (int j = 1; j < N - 1; ++j) { flag &= s[j][i] == '.'; } if (flag && (s[0][i] == '.' || s[N - 1][i] == '.')) { ++ret; } } return ret; } public static void main(String[] args) { new Main().run(); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } void show(char[][] s) { int N = s.length; for (int i = 0; i < N; ++i) { for (int j = 0; j < N; ++j) { System.out.print(s[i][j]); } System.out.println(); } } }