結果

問題 No.1434 Make Maze
ユーザー ks2mks2m
提出日時 2021-03-19 22:48:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,911 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-11-19 00:09:05
合計ジャッジ時間 11,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,468 KB
testcase_01 AC 132 ms
41,412 KB
testcase_02 AC 207 ms
43,432 KB
testcase_03 AC 208 ms
43,368 KB
testcase_04 AC 119 ms
40,236 KB
testcase_05 AC 121 ms
39,852 KB
testcase_06 AC 129 ms
41,228 KB
testcase_07 AC 134 ms
41,584 KB
testcase_08 WA -
testcase_09 AC 132 ms
41,240 KB
testcase_10 AC 137 ms
41,572 KB
testcase_11 AC 133 ms
41,008 KB
testcase_12 AC 132 ms
41,768 KB
testcase_13 AC 135 ms
41,596 KB
testcase_14 AC 138 ms
41,308 KB
testcase_15 AC 187 ms
42,164 KB
testcase_16 AC 135 ms
41,884 KB
testcase_17 AC 126 ms
40,540 KB
testcase_18 AC 161 ms
41,860 KB
testcase_19 AC 200 ms
42,352 KB
testcase_20 AC 133 ms
41,300 KB
testcase_21 AC 132 ms
41,420 KB
testcase_22 AC 133 ms
41,288 KB
testcase_23 AC 138 ms
41,428 KB
testcase_24 AC 186 ms
41,896 KB
testcase_25 AC 204 ms
43,012 KB
testcase_26 AC 156 ms
41,868 KB
testcase_27 AC 179 ms
42,332 KB
testcase_28 AC 141 ms
41,788 KB
testcase_29 AC 134 ms
41,932 KB
testcase_30 AC 167 ms
41,680 KB
testcase_31 AC 175 ms
41,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		int x = sc.nextInt();
		sc.close();

		int min = h + w - 2;
		int max = h * (w / 2 + 1) + (w / 2) - 1;
		if (h % 4 == 3 && w % 4 == 3) {
			max -= Math.min(h, w) - 1;
		}
		int y = max - x;
		if (x < min || max < x || y % 4 != 0) {
			System.out.println(-1);
			return;
		}

		y /= 4;
		char[][] s = new char[h][w];
		for (int i = 0; i < h; i++) {
			Arrays.fill(s[i], '.');
		}
		for (int i = 1; i < h; i += 2) {
			for (int j = 1; j < w; j += 2) {
				s[i][j] = '#';
			}
		}

		boolean tate = true;
		if (w % 4 == 3) {
			if (h % 4 == 1 || h > w) {
				tate = false;
			}
		}
		if (tate) {
			tate(s, h, w, y);
		} else {
			yoko(s, h, w, y);
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < h; i++) {
			pw.println(s[i]);
		}
		pw.flush();
	}

	static void tate(char[][] s, int h, int w, int y) {
		for (int j = 1; j < w; j += 4) {
			s[0][j] = '#';
		}
		for (int i = 2; i < h - 1; i += 2) {
			for (int j = 1; j < w; j += 2) {
				s[i][j] = '#';
			}
		}
		for (int j = 3; j < w; j += 4) {
			s[h - 1][j] = '#';
		}

		int i = h - 1;
		int j = 1;
		for (int k = 0; k < y; k++) {
			s[i][j] = '#';
			s[i - 2][j] = '.';
			i -= 2;
			if (i < 2) {
				i = h - 1;
				j += 4;
			}
		}
	}

	static void yoko(char[][] s, int h, int w, int y) {
		for (int i = 1; i < h; i += 4) {
			s[i][0] = '#';
		}
		for (int j = 2; j < w - 1; j += 2) {
			for (int i = 1; i < h; i += 2) {
				s[i][j] = '#';
			}
		}
		for (int i = 3; i < h; i += 4) {
			s[i][w - 1] = '#';
		}

		int j = w - 1;
		int i = 1;
		for (int k = 0; k < y; k++) {
			s[i][j] = '#';
			s[i][j - 2] = '.';
			j -= 2;
			if (j < 2) {
				j = w - 1;
				i += 4;
			}
		}
	}
}
0