欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【题解】洛谷 P1125 笨小猴

程序员文章站 2022-06-22 20:16:03
洛谷 P1125 笨小猴题目链接思路水题用大小为26的数组存储每个字母出现的次数,最后排个序,把次数为0的字母去掉,用最大的次数减去最小的非零次数,判断质数就行。代码/* * @Description: * @Author: 多多 * @Date: 2020-10-24 13:23:05 * @LastEditTime: 2020-10-24 13:32:12 * @LastEditors: 多多 */#include using na...

洛谷 P1125 笨小猴

题目链接

思路

水题
用大小为26的数组存储每个字母出现的次数,最后排个序,把次数为0的字母去掉,用最大的次数减去最小的非零次数,判断质数就行。

代码

/*
 * @Description: 
 * @Author: 多多
 * @Date: 2020-10-24 13:23:05
 * @LastEditTime: 2020-10-24 13:32:12
 * @LastEditors: 多多
 */
#include <bits/stdc++.h>
using namespace std;

bool judge(int x)
{
    if (x < 2)
    {
        return false;
    }
    if (x == 2)
    {
        return true;
    }
    for (int i = 2; i <= floor(sqrt(x)); i++)
    {
        if (x % i == 0)
        {
            return false;
        }
    }
    return true;
}

int main()
{
    freopen64("./INPUT/P1125.in", "r", stdin);
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s;
    cin >> s;
    int a[26] = {0};
    for (int i = 0; i < s.length(); i++)
    {
        a[s[i] - 'a']++;
    }
    sort(a, a + 26);
    int i = 0;
    while (a[i] == 0)
    {
        i++;
    }
    if (judge(a[25] - a[i]))
    {
        cout << "Lucky Word" << endl;
        cout << a[25] - a[i] << endl;
    }
    else
    {
        cout << "No Answer" << endl;
        cout << 0 << endl;
    }
    return 0;
}

本文地址:https://blog.csdn.net/weixin_39117125/article/details/109259195

相关标签: 洛谷 c++