結果

問題 No.1434 Make Maze
ユーザー merom686merom686
提出日時 2021-03-20 00:08:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,922 bytes
コンパイル時間 932 ms
コンパイル使用メモリ 89,144 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 18:19:20
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

char c[999][1000];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int h, w, x;
    cin >> h >> w >> x;

    h = (h + 1) / 2;
    w = (w + 1) / 2;

    if (x % 2 != 0) {
        cout << -1 << endl;
        exit(0);
    }
    x /= 2;

    int x0 = (h - 1) + (w - 1), x1 = h * w - 1;
    if ((x1 - x0) % 2 != 0) x1--;

    if (!(x0 <= x && x <= x1 && (x - x0) % 2 == 0)) {
        cout << -1 << endl;
        exit(0);
    }
    x -= x0;
    x /= 2;

    for (int i = 0; i < h * 2 - 1; i++) {
        for (int j = 0; j < w * 2 - 1; j++) {
            c[i][j] = '#';
        }
    }
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            c[i * 2][j * 2] = '.';
        }
    }
    for (int j = 0; j < w - 1; j++) {
        c[0][j * 2 + 1] = '.';
    }
    for (int i = 0; i < h - 1; i++) {
        c[i * 2 + 1][(w - 1) * 2] = '.';
    }
    for (int i = h - 2; i > 0; i -= 2) {
        int f = x == 0;
        for (int j = w - 2; j >= 0; j--) {
            c[i * 2 + 0][j * 2 + 1] = '.';
            c[i * 2 + 2][j * 2 + 1] = '.';
            if (x > 0) x--;
            if (f == 0 && (j == 0 || x == 0)) {
                c[i * 2 + 1][(w - 1) * 2] = '#';
                c[i * 2 + 1][j * 2] = '.';
                f = 1;
            }
        }
    }
    if (h % 2 == 0) {
        for (int j = w - 3; j >= 0; j -= 2) {
            c[1][j * 2 + 0] = '.';
            c[1][j * 2 + 2] = '.';
            if (x > 0) {
                c[0][j * 2 + 1] = '#';
                c[2][j * 2 + 1] = '.';
                x--;
            }
        }
        if (w % 2 == 0) {
            c[1][0] = '.';
        }
    }

    for (int i = 0; i < h * 2 - 1; i++) {
        cout << c[i] << '\n';
    }

    return 0;
}
0