結果

問題 No.608 God's Maze
ユーザー 37zigen37zigen
提出日時 2017-12-23 08:57:10
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 1,618 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 81,676 KB
実行使用メモリ 122,952 KB
最終ジャッジ日時 2024-12-17 16:12:50
合計ジャッジ時間 71,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 138 ms
121,920 KB
testcase_04 WA -
testcase_05 AC 137 ms
117,180 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 138 ms
61,036 KB
testcase_11 AC 138 ms
122,832 KB
testcase_12 AC 136 ms
60,940 KB
testcase_13 AC 135 ms
60,908 KB
testcase_14 WA -
testcase_15 AC 137 ms
61,136 KB
testcase_16 AC 135 ms
61,588 KB
testcase_17 AC 137 ms
61,176 KB
testcase_18 AC 139 ms
61,152 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 139 ms
114,576 KB
testcase_26 AC 137 ms
60,820 KB
testcase_27 AC 136 ms
114,816 KB
testcase_28 AC 145 ms
60,944 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 234 ms
58,916 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 WA -
testcase_51 RE -
testcase_52 AC 138 ms
53,980 KB
testcase_53 AC 136 ms
54,132 KB
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 138 ms
54,108 KB
testcase_57 AC 138 ms
54,080 KB
testcase_58 RE -
testcase_59 AC 138 ms
53,988 KB
testcase_60 WA -
testcase_61 AC 135 ms
54,112 KB
testcase_62 AC 137 ms
54,128 KB
testcase_63 AC 136 ms
54,200 KB
testcase_64 AC 137 ms
115,640 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);
	}

	int solve(boolean[] b, int n) {
		int ret = Integer.MAX_VALUE / 3;
		for (int j = 0; j < b.length - 1; ++j) {
			int cur = 0;
			boolean[] a = Arrays.copyOf(b, b.length);
			for (int k = j; k < b.length - 1; ++k) {
				a[k] = !a[k];
				++cur;
			}
			int t = a.length - 1;
			int s = 0;
			while (a[t])
				--t;
			while (a[s])
				++s;
			for (int i = n - 2; i >= s; --i) {
				a[i] = !a[i];
				++cur;
			}
			for (int i = s + 1; i <= t; ++i) {
				a[i] = !a[i];
				++cur;
			}
			ArrayDeque<Integer> dq = new ArrayDeque<>();
			for (int i = s; i <= t; ++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;
					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