結果

問題 No.1434 Make Maze
ユーザー 沙耶花沙耶花
提出日時 2021-03-19 22:08:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,511 bytes
コンパイル時間 4,663 ms
コンパイル使用メモリ 264,948 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-04-29 17:03:24
合計ジャッジ時間 8,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int H,W,X;
	cin>>H>>W>>X;
	
	vector<string> S(H,string(W,'.'));
	rep(i,H){
		rep(j,W){
			if(i&1){
				if(j&1){
					S[i][j] = '#';
				}
			}
		}
	}
	
	X -= (H-1) + (W-1);
	if(X<0){
		cout<<-1<<endl;
		return 0;
	}
	
	if(X%4!=0){
		cout<<-1<<endl;
		return 0;
	}
	
	{	
		int XX = X;
		auto T = S;

		for(int i=1;i<H;i+=2){
			if(i==1){
				rep(j,W-1)T[i][j] = '#';
			}
			else{
				if(i+2>H){
					rep(j,W-1)T[i][j] = '#';
					break;
				}
				int cur = W-1;
				while(cur!=0&&X>0){
					X -= 4;
					cur -= 2;
				}
				rep(j,W){
					if(j==cur)continue;
					T[i][j] = '#';
				}
				
				i+=2;
				if(i<H){
					rep(j,W-1){
						T[i][j] = '#';
					}
				}
				
				
			}
		}
		if(X==0){
			rep(i,H)cout<<T[i]<<endl;
			return 0;
		}
		X = XX;
	}
	
	{	
		int XX = X;
		auto T = S;

		for(int i=1;i<W;i+=2){
			if(i==1){
				rep(j,H-1)T[j][i] = '#';
			}
			else{
				if(i+2>W){
					rep(j,H-1)T[j][i] = '#';
					break;
				}
				int cur = H-1;
				while(cur!=0&&X>0){
					X -= 4;
					cur -= 2;
				}
				rep(j,H){
					if(j==cur)continue;
					T[j][i] = '#';
				}
				
				i+=2;
				if(i<W){
					rep(j,H-1){
						T[j][i] = '#';
					}
				}
				
				
			}
		}
		if(X==0){
			rep(i,H)cout<<T[i]<<endl;
			return 0;
		}
		X = XX;
	}
	
	cout<<-1<<endl;
	
	
    return 0;
}
0