結果

問題 No.1434 Make Maze
ユーザー 沙耶花沙耶花
提出日時 2021-03-19 22:57:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,772 bytes
コンパイル時間 4,629 ms
コンパイル使用メモリ 265,944 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-04-29 18:24:22
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 7 ms
6,272 KB
testcase_03 AC 7 ms
6,272 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 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 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

vector<string> get(int H,int W,int X,vector<string> S){
	if(H<=3){
		return {};
	}
	int XX = X;
	auto T = S;

	rep(i,H){
		if(i&1){
			rep(j,W){
				T[i][j] = '#';
			}
		}
	}
	
	for(int i=1;i<H;){
		if(i+4>=H||i+6<H){
			T[i].back() = '.';
			i += 2;
			int cur = W-1;
			while(cur!=0&&X>0){
				X -= 4;
				cur -= 2;
			}
			T[i][cur] = '.';
			i+=2;
		}
		else{
			T[i].back() = '.';
			i += 2;
			int cur = W-1;
			while(cur!=0&&X>0){
				X -= 4;
				cur -= 2;
			}
			T[i][cur] = '.';
			i += 2;
			T[i][cur] = '.';
			if(cur==0&&X>0){
				
				T[i-1][1] = '#';
				
				int x = 2;
				while(x+2<W && X>0){
					X -= 4;
					T[i][x] = '.';
					T.back()[x+1] = '#';
					T[i][x+2] = '.';
					x += 4;
				}
				
				
			}
			i += 2;
		}
	}
	
	
	if(X==0){
		return T;
	}
	return {};
	
}

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;
	}
	
	if(X==0){
		rep(i,H){
			if(i&1){
				rep(j,W-1)S[i][j] = '#';
			}
		}
		rep(i,H){
			cout<<S[i]<<endl;
		}
		return 0;
	}
	
	auto ret = get(H,W,X,S);
	if(ret.size()!=0){
		
		rep(i,H)cout<<ret[i]<<endl;
		return 0;
	}
	
	vector<string> SS(W,string(H,'.'));
	rep(i,H){
		rep(j,W){
			SS[j][i] = S[i][j];
		}
	}
	ret = get(W,H,X,SS);
	if(ret.size()==0)cout<<-1<<endl;
	else{
		rep(i,H){
			rep(j,W){
				S[i][j] = ret[j][i];
			}
		}
		rep(i,H)cout<<S[i]<<endl;
	}
	
	
    return 0;
}
0