【小羊肖恩】小羊杯 Round 2 C+K

题目链接:https://ac.nowcoder.com/acm/contest/100672#question

C.是毛毛虫吗?

思路:

其实很简单,假设我们要满足题目所给条件,那么这个毛毛虫最坏情况下肯定是一条如下图所示的无向图

右端省略号为对称图形 ,其中红线为毛毛虫的主体

那我们可以知道,只要对于其中任意一个节点增加一个,那么就无法构成毛毛虫

再总结一下,即只要一个节点有三个子节点,且这三个子节点都含有一个子节点(不为父节点)

那么就无法构成毛毛虫

代码:

cpp 复制代码
#include <iostream>
#include <algorithm>
#include<cstring>
#include<cctype>
#include<string>
#include <set>
#include <vector>
#include <cmath>
#define ll long long
using namespace std;

void solve()
{
    int n;
    cin >> n;
    vector<vector<int> >a(n + 1);
    for (int i = 1; i < n; i++) {
        int x, y;
        cin >> x >> y;
        a[x].push_back(y);
        a[y].push_back(x);

    }
    for (int i = 1; i <= n; i++)
    {
        if (a[i].size() >= 3)
        {
            int sum = 0;
            for (int j = 0; j < a[i].size(); j++)
            {
                int t = a[i][j];
                if (a[t].size() > 1)sum++;
            }
            if (sum >= 3) {
                cout << "NO" << endl;
                return;
            }
        }
    }
    cout << "YES" << endl;
}

int main()
{
    cin.tie(0)->sync_with_stdio(false);
    int t = 1;
    cin >> t;
    while (t--)
    {
        solve();
    }
    return 0;
}

K.友善的数

思路:

首先,只有x或y有一个为1,那么必定无法找出

那么接下来我们考虑什么情况这个数k与x,y不互质

可以显然看出,我们最小的情况肯定是 Px*Py ,其中P为构成x/y的最小质因数

那么就分两种情况

①.gcd(x,y) == 1

此时x和y互质,那么此时只能选x和y的最小质因数

②.gcd(x,y) != 1

此时x和y有着公约数,那么我们可以考虑旋转公约数的最小质因子,但是不能保证其一定比x和y的最小质因数之积小,所以还需要取min

对于如何选取x和y的质因数,我们可以想到欧拉筛,在欧拉筛中我们保证每次筛选都是最小质因数的i倍,所以我们便可以定义一个数组用于储存每个数的最小质因数,同时预处理一下

代码:

cpp 复制代码
#include <iostream>
#include <algorithm>
#include<cstring>
#include<cctype>
#include<string>
#include <set>
#include <vector>
#include <cmath>
#define ll long long
using namespace std;

ll gcd(ll a,ll b)
{
    return !b ? a : gcd(b, a % b);
}
const int N = 2e5+1;
bool isp[N + 1];
vector<int> p;
int minp[N + 1];

void els()
{
    memset(isp, true, sizeof isp);
    isp[0] = isp[1] = false;
    for (int i = 2; i <= N; i++)
    {
        if (isp[i]) p.push_back(i), minp[i] = i;
        for (int j = 0; j < p.size() && p[j] * i <=N; j++)
        {
            minp[p[j] * i] = p[j];
            isp[p[j] * i] = false;
            if (i % p[j] == 0) break;
        }
    }
}

void solve()
{
    ll x, y;
    cin >> x >> y;
    if (x == 1 || y == 1)
    {
        cout << -1 << endl;
        return;
    }
    if (gcd(x,y) == 1)
    {
        cout << (ll)(minp[x]) * (ll)(minp[y]) << endl;
    }
    else
    {
        cout << min((ll)minp[gcd(x,y)], (ll)minp[x] * (ll)minp[y]) << endl;
    }
}

int main()
{
    els();
    cin.tie(0)->sync_with_stdio(false);
    int t = 1;
    cin >> t;
    while (t--)
    {
        solve();
    }
    return 0;
}
相关推荐
zhglhy11 分钟前
随机森林与决策树
算法·决策树·随机森林
BFT白芙堂37 分钟前
Franka 机器人x Dexterity Gen引领遥操作精细任务新时代
人工智能·算法·机器学习·具身智能·franka机器人·科研机器人·机器人解决方案
LuckyLay44 分钟前
LeetCode算法题(Go语言实现)_38
算法·leetcode·golang
Chiyamin1 小时前
图算法基础
数据结构·c++·算法
C——Coder1 小时前
关于柔性数组
算法·柔性数组
AlgoNewbie1 小时前
牛客周赛 Round 88【题解完成】
算法
小郝 小郝1 小时前
【C语言】浮点数在内存的储存
c语言·开发语言
阿里云云原生1 小时前
C语言 AI 通义灵码 VSCode插件安装与功能详解
c语言
luckycoding2 小时前
2747. 统计没有收到请求的服务器数目
算法
0x4082 小时前
数据结构--线性表&顺序表示(上)
数据结构·笔记