蛇形矩阵(square.*)

蛇形矩阵(square.*)

Description

给定一个正整数 n n n ,现在构造一个 n × n n \times n n×n的蛇形矩阵,矩阵每个格子内填入一个数字。矩阵

右上角填入1,左下角填入 n × n n \times n n×n,从 1... n × n 1...n \times n 1...n×n 依次填入数字的顺序为

( 1 , n ) − − > ( 1 , n − 1 ) − − > ( 2 , n ) − − > ( 3 , n ) − − > ( 2 , n − 1 ) − − > ( 1 , n − 2 ) − − > . . . − − > ( n , n ) (1,n)-->(1,n-1)-->(2,n)-->(3,n)-->(2,n-1)-->(1,n-2)-->...-->(n,n) (1,n)>(1,n1)>(2,n)>(3,n)>(2,n1)>(1,n2)>...>(n,n) 。譬如说 4 × 4 4\times4 4×4 的蛇形矩阵是:

现在给出 n n n ,求 n 2 n^2 n2 的蛇形矩阵中第 x x x y y y 列的数字是什么。

Input

一行,三个整数n,x,y。

Output

一行,一个整数,表示n*n的蛇形矩阵中第x行y列的数字。

Sample Input

4 3 1

Sample Output

14

HINT

40 40 40%的数据, n < = 100 n<=100 n<=100

100 100 100%的数据, n < = 30000 n<=30000 n<=30000

Code

一道简单的数论题

#include <bits/stdc++.h>
using namespace std;
inline int read()
{
	int x = 0, f = 1;
	char c = getchar();
	while (c > '9' || c < '0')
	{
		if (c == '-')
			f = -1;
		c = getchar();
	}
	while (c >= '0' && c <= '9')
	{
		x = x * 10 + c - '0';
		c = getchar();
	}
	return x * f;
}
int n, x, y, a, ans;
int main()
{
	n = read();
	x = read();
	y = read();
	y = n - y + 1;
	a = x + y - 1;
	if (a <= n)
	{
		ans = a * (a - 1) / 2;
		if (a % 2 == 1)
		{
			printf("%d", ans + y);
		}
		else
		{
			printf("%d", ans + x);
		}
	}
	else
	{
		ans = n * n - (n * 2 - a + 1) * (n * 2 - a) / 2;
		if (a % 2 == 1)
		{
			printf("%d", ans + n - x + 1);
		}
		else
		{
			printf("%d", ans + n - y + 1);
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值