atcoder ABC 357-C题详解

2024-06-11 09:44
文章标签 详解 atcoder abc 357

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

​atcoder ABC 357-C题详解

Problem Statement

For a non-negative integer K, we define a level-Kcarpet as follows:

A level-0 carpet is a 1×1 grid consisting of a single black cell.
For K>0, a level-K carpet is a 3K×3Kgrid. When this grid is divided into nine 3K−1×3K−1 blocks:
The central block consists entirely of white cells.
The other eight blocks are level-(K−1) carpets.
You are given a non-negative integer N.
Print a level-N carpet according to the specified format.

Constraints

0≤N≤6
N is an integer.

Input

The input is given from Standard Input in the following format:

Output

Print 3N lines.
The i-th line (1≤i≤3N) should contain a string Si​ of length 3N consisting of . and #.
The j-th character of Si​ (1≤j≤3N) should be # if the cell at the i-th row from the top and j-th column from the left of a level-N carpet is black, and . if it is white.

Sample Input 1

1

Sample Output 1

#.#

A level-1 carpet is a 3×3 grid as follows:

在这里插入图片描述

When output according to the specified format, it looks like the sample output.

Sample Input 2

2

Sample Output 2

#########
#.##.##.#
#########
###…###
#.#…#.#
###…###
#########
#.##.##.#
#########
A level-2 carpet is a 9×9 grid.

思路分析:

​本题可以用递归来实现,其中要把八个小正方形全部遍历到,需要用八个坐标。把白色的地毯赋值为1。

在这里插入图片描述

code:

#include <iostream>
#include <cmath>
using namespace std;
int a[2000][2000];//0:黑,1:白
void dfs(int x,int y,int k){if(k==0){a[x][y]=0;return ;}dfs(x,y,k-1);dfs(x+pow(3,k-1),y,k-1);dfs(x+pow(3,k-1)*2,y,k-1);dfs(x,y+pow(3,k-1),k-1);dfs(x,y+pow(3,k-1)*2,k-1);dfs(x+pow(3,k-1),y+pow(3,k-1)*2,k-1);dfs(x+pow(3,k-1)*2,y+pow(3,k-1),k-1);dfs(x+pow(3,k-1)*2,y+pow(3,k-1)*2,k-1);for(int i=x+pow(3,k-1);i<x+pow(3,k-1)*2;i++){for(int j=y+pow(3,k-1);j<y+pow(3,k-1)*2;j++){a[i][j]=1;}}
}
int main(){int n;cin>>n;dfs(0,0,n);for(int i=0;i<pow(3,n);i++){for(int j=0;j<pow(3,n);j++){if(a[i][j]) cout<<'.';else cout<<'#';}cout<<endl;}
}

这篇关于atcoder ABC 357-C题详解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Rust 数据类型详解

《Rust数据类型详解》本文介绍了Rust编程语言中的标量类型和复合类型,标量类型包括整数、浮点数、布尔和字符,而复合类型则包括元组和数组,标量类型用于表示单个值,具有不同的表示和范围,本文介绍的非... 目录一、标量类型(Scalar Types)1. 整数类型(Integer Types)1.1 整数字

Java操作ElasticSearch的实例详解

《Java操作ElasticSearch的实例详解》Elasticsearch是一个分布式的搜索和分析引擎,广泛用于全文搜索、日志分析等场景,本文将介绍如何在Java应用中使用Elastics... 目录简介环境准备1. 安装 Elasticsearch2. 添加依赖连接 Elasticsearch1. 创

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

PyTorch使用教程之Tensor包详解

《PyTorch使用教程之Tensor包详解》这篇文章介绍了PyTorch中的张量(Tensor)数据结构,包括张量的数据类型、初始化、常用操作、属性等,张量是PyTorch框架中的核心数据结构,支持... 目录1、张量Tensor2、数据类型3、初始化(构造张量)4、常用操作5、常用属性5.1 存储(st

Python 中 requests 与 aiohttp 在实际项目中的选择策略详解

《Python中requests与aiohttp在实际项目中的选择策略详解》本文主要介绍了Python爬虫开发中常用的两个库requests和aiohttp的使用方法及其区别,通过实际项目案... 目录一、requests 库二、aiohttp 库三、requests 和 aiohttp 的比较四、requ

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

Python在固定文件夹批量创建固定后缀的文件(方法详解)

《Python在固定文件夹批量创建固定后缀的文件(方法详解)》文章讲述了如何使用Python批量创建后缀为.md的文件夹,生成100个,代码中需要修改的路径、前缀和后缀名,并提供了注意事项和代码示例,... 目录1. python需求的任务2. Python代码的实现3. 代码修改的位置4. 运行结果5.

Go Gorm 示例详解

《GoGorm示例详解》Gorm是一款高性能的GolangORM库,便于开发人员提高效率,本文介绍了Gorm的基本概念、数据库连接、基本操作(创建表、新增记录、查询记录、修改记录、删除记录)等,本... 目录1. 概念2. 数据库连接2.1 安装依赖2.2 连接数据库3. 数据库基本操作3.1 创建表(表关

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

Java读取InfluxDB数据库的方法详解

《Java读取InfluxDB数据库的方法详解》本文介绍基于Java语言,读取InfluxDB数据库的方法,包括读取InfluxDB的所有数据库,以及指定数据库中的measurement、field、... 首先,创建一个Java项目,用于撰写代码。接下来,配置所需要的依赖;这里我们就选择可用于与Infl