結果

問題 No.608 God's Maze
ユーザー 37zigen37zigen
提出日時 2017-12-23 09:23:52
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,716 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 121,588 KB
最終ジャッジ日時 2024-12-17 16:24:43
合計ジャッジ時間 70,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
61,128 KB
testcase_01 AC 119 ms
121,384 KB
testcase_02 AC 107 ms
59,888 KB
testcase_03 AC 122 ms
121,576 KB
testcase_04 AC 122 ms
60,968 KB
testcase_05 AC 122 ms
113,468 KB
testcase_06 AC 121 ms
61,192 KB
testcase_07 AC 118 ms
116,816 KB
testcase_08 AC 124 ms
61,184 KB
testcase_09 AC 118 ms
121,588 KB
testcase_10 AC 119 ms
60,856 KB
testcase_11 AC 119 ms
120,548 KB
testcase_12 AC 121 ms
60,948 KB
testcase_13 AC 108 ms
112,376 KB
testcase_14 AC 128 ms
60,852 KB
testcase_15 AC 110 ms
112,488 KB
testcase_16 AC 120 ms
60,984 KB
testcase_17 AC 119 ms
113,604 KB
testcase_18 AC 107 ms
59,884 KB
testcase_19 AC 106 ms
112,168 KB
testcase_20 AC 119 ms
61,100 KB
testcase_21 AC 108 ms
112,668 KB
testcase_22 AC 121 ms
60,872 KB
testcase_23 AC 110 ms
111,968 KB
testcase_24 AC 107 ms
59,828 KB
testcase_25 AC 106 ms
111,968 KB
testcase_26 AC 111 ms
60,720 KB
testcase_27 AC 121 ms
120,456 KB
testcase_28 AC 117 ms
60,976 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 219 ms
58,004 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 123 ms
53,904 KB
testcase_51 AC 106 ms
53,100 KB
testcase_52 AC 105 ms
52,784 KB
testcase_53 AC 107 ms
52,896 KB
testcase_54 AC 102 ms
53,156 KB
testcase_55 AC 116 ms
54,160 KB
testcase_56 AC 107 ms
53,860 KB
testcase_57 AC 108 ms
53,140 KB
testcase_58 AC 122 ms
54,100 KB
testcase_59 AC 117 ms
54,108 KB
testcase_60 AC 105 ms
52,972 KB
testcase_61 AC 109 ms
54,004 KB
testcase_62 AC 118 ms
53,932 KB
testcase_63 AC 120 ms
56,296 KB
testcase_64 AC 105 ms
111,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
	}

}
0