PTA乙级 (1027 打印沙漏 (20分))

Posted jianqiao123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA乙级 (1027 打印沙漏 (20分))相关的知识,希望对你有一定的参考价值。

1027 打印沙漏 (20分)

https://pintia.cn/problem-sets/994805260223102976/problems/994805294251491328

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <algorithm>
using namespace std;
int main()
{
	int n,min=1001,c,d,e=0;
	char chr,chr1=‘ ‘;
	cin>>n>>chr;
	for(int i=1;i<=23;i++)
	{
		if((n-(2*i*i-1))<min&&(n-(2*i*i-1)>=0)) {
			c=i;
			min=n-(2*i*i-1);
		}
	}
		for(d=2*c-1;d>=1;d-=2)
		{
			if(d!=2*c-1) for(int j=1;j<=e;j++) cout<<chr1;
			for(int j=1;j<=d;j++) cout<<chr;
			cout<<endl;
			if(d!=1) e++;
		}
		for(d=3;d<=2*c-1;d+=2)
		{
			e--;
			if(d!=2*c-1) for(int j=1;j<=e;j++) cout<<chr1;
			for(int j=1;j<=d;j++) cout<<chr;
			cout<<endl;
		}
    cout<<min;
    return 0;
}

以上是关于PTA乙级 (1027 打印沙漏 (20分))的主要内容,如果未能解决你的问题,请参考以下文章

PAT乙级1027. 打印沙漏(20)

PAT-乙级-1027 打印沙漏

1027 打印沙漏 (20分)

1027 打印沙漏 (20 分)

PTA(Basic Level)1027.打印沙漏

题解PTA团体程序设计天梯赛L1-002 打印沙漏 (20 分) Go语言|Golang