每日OJ题_牛客_平方数_数学_C++_Java

目录

牛客_平方数_数学

题目解析

C++代码1暴力

C++代码2数学

Java代码数学


牛客_平方数_数学

平方数 (nowcoder.com)

描述:

牛妹是一个喜欢完全平方数的女孩子。
牛妹每次看到一个数 x,都想求出离 x 最近的完全平方数 y。
每次手算太麻烦,所以牛妹希望你能写个程序帮她解决这个问题。
形式化地讲,你需要求出一个正整数 y,满足 y 可以表示成 a^2(a 是正整数),使得 |x-y| 的值最小。可以证明这样的 y 是唯一的。


题目解析

判断一个数开根号之后左右两个数的平方,哪个最近即可。

C++代码1暴力

#include <iostream>
#include <string>
using namespace std;

int main()
{
    string s1, s2;
    while(cin >> s1 >> s2) // 未知组数的输⼊
    {
        int hash[26] = { 0 };
        for(auto ch : s1) hash[ch - 'A']++;
        bool ret = true;
        for(auto ch : s2)
        {
            if(--hash[ch - 'A'] < 0)
            {
                ret = false;
                break;
            }
        }
        cout << (ret ? "Yes" : "No") << endl;
    }
    return 0;
}

C++代码2数学

#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;
#define int long long
signed main()
{
    int x = 0;
    cin >> x;
    int n = sqrt(x);
    int prev = n * n, next = (n + 1) * (n + 1);
    if(x - prev < next - x)
    {
        cout << prev << endl;
    }
    else
    {
        cout << next << endl;
    }
    return 0;
}

Java代码数学

import java.util.*;
public class Main
{
    public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        long x = in.nextLong();
        long a = (long)Math.sqrt(x);
        long x1 = a * a, x2 = (a + 1) * (a + 1);
        if(x - x1 < x2 - x)
        {
            System.out.println(x1);
        }
        else
        {
            System.out.println(x2);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

GR鲸鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值