Fill the Square

2024-08-29 01:38
文章标签 fill square

本文主要是介绍Fill the Square,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

中文题目解释详见我的博客:http://xiaoshig.sinaapp.com/?p=94

 

In this problem, you have to draw a square using uppercase English Alphabets.

To be more precise, you will be given a square grid with some empty blocks and others already filled for you with some letters to make your task easier. You have to insert characters in every empty cell so that the whole grid is filled with alphabets. In doing so you have to meet the following rules:

 

  1. Make sure no adjacent cells contain the same letter; two cells are adjacent if they share a common edge.  
  2. There could be many ways to fill the grid. You have to ensure you make the lexicographically smallest one. Here, two grids are checked in row major order when comparing lexicographically.

 

Input
The first line of input will contain an integer that will determine the number of test cases. Each case starts with an integer n( n<=10 ), that represents the dimension of the grid. The next n lines will contain n characters each. Every cell of the grid is either a ‘.’ or a letter from [A, Z]. Here a ‘.’ Represents an empty cell.

 

Output
For each case, first output Case #: ( # replaced by case number ) and in the next n lines output the input matrix with the empty cells filled heeding the rules above.
 
Sample Input                       Output for Sample Input  

2

3

...

...

...

3

...

A..

... 

Case 1:

ABA

BAB

ABA

Case 2:

BAB

ABA

BAB


Problemsetter: Sohel Hafiz

 

#include<iostream>
using namespace std;
int main()
{char a[15][15],ch;bool l;int n,i,t,j,k;cin>>t;for(k=1;k<=t;k++){cin>>n;for(i=0;i<n;i++)cin>>a[i];for(i=0;i<n;i++)for(j=0;j<n;j++)if(a[i][j]=='.'){for(ch='A';ch<='Z';ch++){l=1;if(i>0&&a[i-1][j]==ch)l=0;if(i<n-1&&a[i+1][j]==ch)l=0;if(j>0&&a[i][j-1]==ch)l=0;if(i<n-1&&a[i][j+1]==ch)l=0;if(l){a[i][j]=ch;break;}}}cout<<"Case "<<k<<':'<<endl;for(i=0;i<n;i++){for(j=0;j<n;j++)cout<<a[i][j];cout<<endl;}}return 0;
}

这篇关于Fill the Square的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1116476

相关文章

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

[LeetCode] 221. Maximal Square

题:https://leetcode.com/problems/maximal-square/description/ #题目 Given a 2D binary matrix filled with 0’s and 1’s, find the largest square containing only 1’s and return its area. Example: Input:

Sum of Square Numbers

Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c. Example 1: Input: 5Output: TrueExplanation: 1 * 1 + 2 * 2 = 5 Example 2: Inpu

python 实现perfect square完全平方数算法

python 实现perfect square完全平方数算法介绍 完全平方数(Perfect Square)是一个整数,它可以表示为某个整数的平方。例如,1,4,9,16,25,… 都是完全平方数,因为 1 = 1 2 , 4 = 2 2 , 9 = 3 2 1=1^2,4=2^2,9=3^2 1=12,4=22,9=32,依此类推。 要判断一个给定的数 n 是否是完全平方数,有几种方法可以

Leetcode176: Maximal Square

Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area. For example, given the following matrix: 1 0 1 0 01 0 1 1 11 1 1 1 11 0 0 1 0

Ural 1073 Square Country (DP)

题目地址:Ural 1073 DP水题。也可以说是背包。 #include <iostream>#include <cstdio>#include <string>#include <cstring>#include <stdlib.h>#include <math.h>#include <ctype.h>#include <queue>#include <map>#in

lower_bound与upper_bound还有fill的使用

STL一直很好用,今天使用了一下lower_bound和upper_bound函数,熟练使用可以减少写二分的时间。 lower_bound是二分查找出大于等于给出的数的第一个值。upper_bound是二分查找出大于给出的数的第一个值。 这两个函数都是返回的地址,所以使用还要减去首地址(如果数组里面保存的是int) 下面是使用lower_bound优化最长上升子序列。由于长度相同的上升

java Arrays.fill方法介绍

Arrays.fill 是 Java 标准库中的一个方法,用于将数组中的所有元素设置为指定的值。它可以用于一维数组以及多维数组的填充。这个方法非常有用,当你需要快速初始化或重置数组时。 方法签名 // 用于填充一维数组public static void fill(int[] a, int val);// 用于填充指定范围内的一维数组public static void fill(int[

C++ fill fill_n 函数

fill 函数和 fill_n 函数在c++ 被称为写入元素算法 在大多数情况下,fill 函数的效率通常比 for 循环更高,尤其是在处理大规模数据时。这是因为 fill 函数通常是用更底层的、高效的方式实现的,可以减少循环开销。 解决memset函数不能对 数组 进行 数字初始化 赋值 然而,具体的效率也取决于编程语言和实现细节。在一些语言中,编译器可能会优化 for 循环,使其效率接近

A. Theatre Square

A. Theatre Square time limit per test 2 seconds memory limit per test 64 megabytes input standard input output standard output Theatre Square in the capital city of Berland has