結果
問題 | No.608 God's Maze |
ユーザー | 37zigen |
提出日時 | 2017-12-23 09:23:52 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,716 bytes |
コンパイル時間 | 2,298 ms |
コンパイル使用メモリ | 79,988 KB |
実行使用メモリ | 73,980 KB |
最終ジャッジ日時 | 2024-05-09 22:08:52 |
合計ジャッジ時間 | 10,912 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,568 KB |
testcase_01 | AC | 132 ms
41,484 KB |
testcase_02 | AC | 131 ms
41,184 KB |
testcase_03 | AC | 135 ms
41,448 KB |
testcase_04 | AC | 138 ms
41,308 KB |
testcase_05 | AC | 137 ms
41,704 KB |
testcase_06 | AC | 139 ms
41,236 KB |
testcase_07 | AC | 136 ms
41,484 KB |
testcase_08 | AC | 138 ms
41,552 KB |
testcase_09 | AC | 143 ms
41,140 KB |
testcase_10 | AC | 135 ms
41,356 KB |
testcase_11 | AC | 141 ms
41,468 KB |
testcase_12 | AC | 137 ms
41,560 KB |
testcase_13 | AC | 139 ms
41,404 KB |
testcase_14 | AC | 138 ms
41,700 KB |
testcase_15 | AC | 141 ms
41,916 KB |
testcase_16 | AC | 149 ms
41,460 KB |
testcase_17 | AC | 148 ms
41,376 KB |
testcase_18 | AC | 142 ms
41,704 KB |
testcase_19 | AC | 150 ms
41,456 KB |
testcase_20 | AC | 145 ms
41,484 KB |
testcase_21 | AC | 150 ms
41,412 KB |
testcase_22 | AC | 146 ms
41,592 KB |
testcase_23 | AC | 143 ms
41,424 KB |
testcase_24 | AC | 145 ms
41,304 KB |
testcase_25 | AC | 146 ms
41,472 KB |
testcase_26 | AC | 145 ms
41,848 KB |
testcase_27 | AC | 147 ms
41,404 KB |
testcase_28 | AC | 146 ms
41,232 KB |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
ソースコード
import java.util.ArrayDeque; import java.util.Arrays; import java.util.Scanner; class Main { void run() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String S = sc.next(); boolean[] a = new boolean[S.length()]; for (int i = 0; i < S.length(); ++i) { a[i] = S.charAt(i) == '.'; } int ans = solve(Arrays.copyOf(a, a.length), n); { int s = 0; int t = a.length - 1; while (s < t) { boolean tmp = a[s]; a[s] = a[t]; a[t] = tmp; ++s; --t; } n = S.length() - n + 1; } ans = Math.min(ans, solve(a, n)); System.out.println(ans); } ArrayDeque<Integer> dq = new ArrayDeque<>(); int solve(boolean[] b, int n) { int ret = Integer.MAX_VALUE / 3; int t = b.length - 1; int s = 0; while (b[t]) --t; while (b[s]) ++s; if (t < n - 1) return ret; for (int j = t; j >= 0; --j) { int cur = 0; boolean[] a = Arrays.copyOf(b, b.length); for (int i = j; i < t; ++i) { a[i] = !a[i]; ++cur; } for (int i = 0; i < a.length; ++i) { //s->t if (s < i && i <= t) { a[i] = !a[i]; ++cur; } if ((s <= i && i < n - 1) || (n - 1 < i && i <= s)) { a[i] = !a[i]; ++cur; } } for (int i = 0; i < a.length; ++i) { if (!a[i]) dq.addLast(i); } while (!dq.isEmpty()) { if (dq.size() >= 2) { int u = dq.pollFirst(); int v = dq.pollFirst(); cur += (v - u) * 2; } else { cur = Integer.MAX_VALUE / 3; dq.clear(); break; } } ret = Math.min(ret, cur); } return ret; } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } public static void main(String[] args) { new Main().run(); } }