結果
問題 | No.1434 Make Maze |
ユーザー | miscalc |
提出日時 | 2021-03-19 23:25:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,393 bytes |
コンパイル時間 | 1,739 ms |
コンパイル使用メモリ | 173,012 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-19 01:46:53 |
合計ジャッジ時間 | 5,053 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,824 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; //constexpr ll MOD = 1e9 + 7; constexpr ll MOD = 998244353; //constexpr ll MOD = ; ll mod(ll A, ll M) {return (A % M + M) % M;} constexpr ll INF = 1LL << 60; template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} ll divceil(ll A, ll B) {return (A + (B - 1)) / B;} #define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false) int main() { ll H, W, X; cin >> H >> W >> X; if (X % 2 == 1) FINALANS(-1); ll h = (H + 1) / 2, w = (W + 1) / 2, x = X / 2; vector<string> S(H, string(W, '#')); if (h % 2 == 0 && w % 2 == 0) { if (!(h + w - 2 <= x && x <= h * w - 1)) FINALANS(-1); if ((x - (h + w - 2)) % 2 != 0) FINALANS(-1); for (ll i = 0; i < H; i++) { S.at(i).at(0) = '.'; } for (ll j = 0; j < W; j++) { S.at(H - 1).at(j) = '.'; } ll cnt = 0; for (ll i = 0; i + 2 < H - 1; i += 4) { for (ll j = 0; j + 2 < W; j += 2) { if (cnt == (x - (h + w - 2)) / 2) goto FIN; S.at(i).at(j + 1) = '.', S.at(i).at(j + 2) = '.'; S.at(i + 1).at(j) = '#', S.at(i + 1).at(j + 2) = '.'; S.at(i + 2).at(j + 1) = '.', S.at(i + 2).at(j + 2) = '.'; cnt++; } } for (ll j = 2; j + 2 < W; j += 4) { if (cnt == (x - (h + w - 2)) / 2) goto FIN; S.at(H - 3).at(j) = '.', S.at(H - 2).at(j) = '.'; S.at(H - 3).at(j + 1) = '.', S.at(H - 1).at(j + 1) = '#'; S.at(H - 3).at(j + 2) = '.', S.at(H - 2).at(j + 2) = '.'; cnt++; } if (cnt == (x - (h + w - 2)) / 2) goto FIN; } else { if (!(h + w - 2 <= x && x <= h * w)) FINALANS(-1); if ((x - (h + w - 2)) % 2 != 0) FINALANS(-1); if (h % 2 != 0) { for (ll i = 0; i < H; i++) { S.at(i).at(0) = '.'; } for (ll j = 0; j < W; j++) { S.at(H - 1).at(j) = '.'; } ll cnt = 0; for (ll i = 0; i + 2 < H; i += 4) { for (ll j = 0; j + 2 < W; j += 2) { if (cnt == (x - (h + w - 2)) / 2) goto FIN; S.at(i).at(j + 1) = '.', S.at(i).at(j + 2) = '.'; S.at(i + 1).at(j) = '#', S.at(i + 1).at(j + 2) = '.'; S.at(i + 2).at(j + 1) = '.', S.at(i + 2).at(j + 2) = '.'; cnt++; } } if (cnt == (x - (h + w - 2)) / 2) goto FIN; } else { for (ll i = 0; i < H; i++) { S.at(i).at(W - 1) = '.'; } for (ll j = 0; j < W; j++) { S.at(0).at(j) = '.'; } ll cnt = 0; for (ll j = 0; j + 2 < W; j += 4) { for (ll i = 0; i + 2 < H; i += 2) { if (cnt == (x - (h + w - 2)) / 2) goto FIN; S.at(i + 1).at(j) = '.', S.at(i + 2).at(j) = '.'; S.at(i).at(j + 1) = '#', S.at(i + 2).at(j + 1) = '.'; S.at(i + 1).at(j + 2) = '.', S.at(i + 2).at(j + 2) = '.'; cnt++; } } if (cnt == (x - (h + w - 2)) / 2) goto FIN; } FIN: for (ll i = 0; i < H; i++) { cout << S.at(i) << endl; } //cerr << (h + w - 1) << " " << x << endl; } }