【小羊肖恩】小羊杯 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;
}
相关推荐
萧毅寒6 小时前
leetcode第40题组合总和Ⅱ
算法·leetcode·职场和发展
_extraordinary_6 小时前
动态规划刷题
算法·动态规划
萌の鱼6 小时前
leetcode 48. 旋转图像
数据结构·c++·算法·leetcode
数据攻城小狮子6 小时前
深入剖析 OpenCV:全面掌握基础操作、图像处理算法与特征匹配
图像处理·python·opencv·算法·计算机视觉
xinghuitunan6 小时前
奖学金(acwing)c++
算法
机器学习之心6 小时前
分类预测 | Matlab实现CPO-SVM冠豪猪算法优化支持向量机多特征分类预测
算法·matlab·分类·cpo-svm
win水6 小时前
数据结构(初阶)(七)----树和二叉树(堆,堆排序)
数据结构
wanjiazhongqi7 小时前
哈希表和STL —— unorderde_set/unordered_map【复习笔记】
数据结构·c++·哈希算法·散列表
L_cl7 小时前
【Python 数据结构 1.零基础复习】
数据结构·python
CSDN_PBB7 小时前
[数据结构] - - - 链表
数据结构·链表