CodeForces 201A Symmetry

Description

Consider some square matrixAwith sidenconsisting of zeros and ones. There arenrows numbered from1tonfrom top to bottom andncolumns numbered from1tonfrom left to right in this matrix. We'll denote the element of the matrix which is located at the intersection of thei-row and thej-th column asAi, j.

Let's call matrixAclearif no two cells containing ones have a common side.

Let's call matrixAsymmetricalif it matches the matrices formed from it by a horizontal and/or a vertical reflection. Formally, for each pair(i, j)(1 ≤ i, j ≤ n)both of the following conditions must be met:Ai, j = An - i + 1, jandAi, j = Ai, n - j + 1.

Let's define thesharpnessof matrixAas the number of ones in it.

Given integerx, your task is to find the smallest positive integernsuch that there exists a clear symmetrical matrixAwith sidenand sharpnessx.

Input

The only line contains a single integerx(1 ≤ x ≤ 100) — the required sharpness of the matrix.

Output

Print a single number — the sought value ofn.

Sample Input

Input
4
Output
3
Input
9
Output
5

Hint

The figure below shows the matrices that correspond to the samples:

#include<stdio.h>
int main()
{
    int ans[18]={0},test;
    for(int i=1;i<18;i+=2)
    {
        ans[i]=i*(i/2+1)-i/2;
    }
    while(scanf("%d",&test)!=EOF)
    {
        for(int i=1;i<101;i+=2)
        {
            if(test==3){printf("5\n");break;}
            else
            if(test<=ans[i])
            {
                printf("%d\n",i);
                break;
            }

        }
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值