B. Present from Lena1000 / 找规律

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Present from Lena1000 / 找规律相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/118/B
数字后,如果没数字了就得break掉,不会有多余的空格。

#include<bits/stdc++.h>
using namespace std;
int a[105][105];
int main(void)
{
	int n; 
	cin>>n;
	int m=n*2+1;
	for(int i=0;i<m;i++)
	{
		for(int j=0;j<m;j++)
		{
			if(abs(i-n)+abs(j-n)<=n) a[i][j]=abs(abs(i-n)+abs(j-n)-n);
			else a[i][j]=-1;
		}
	}
	for(int i=0;i<m;i++)
	{
		for(int j=0;j<m;j++)
		{
			if(a[i][j]==-1) cout<<"  ";
			else 
			{
				cout<<a[i][j];
				if(j+1==m) break;
				if(a[i][j+1]==-1) break; 
				cout<<" ";
			}
		}
		cout<<endl;
	}
	return 0;
}

以上是关于B. Present from Lena1000 / 找规律的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #524 (Div. 2) B. Margarite and the best present

SELECT ename,sal FROM emp WHERE sal<(SELECT min(sal) FROM emp)+1000; 是什么意思?

swift 3 present from appdelegate 错误:警告:尝试显示〜其视图不在窗口层次结构中

Codeforces Round #593 (Div. 2) B. Alice and the List of Presents

hdu 1563 Find your present!

2019上海icpc网络赛B. Light bulbs(思维+差分)