数论五·欧拉函数 HihoCoder - 1298(欧拉函数,模板题, 线性筛&&欧拉函数)

数论五·欧拉函数 HihoCoder - 1298

题意:

给你一个区间,要求你求最小的欧拉函数值。(以及此时的n)。输出此时的i。

思路:

直接线性筛,之后枚举就行了。

AC

#include <iostream>
#include <bits/stdc++.h>
#define For(i,x,y) for(int i=(x); i<=(y); i++)
#define fori(i,x,y) for(int i=(x); i<(y); i++)
#define rep(i,y,x) for(int i=(y); i>=(x); i--)
#define mst(x,a) memset(x,a,sizeof(x))
#define pb push_back
#define sz(a) (int)a.size()
#define mp make_pair
#define fi first
#define se second
using namespace std;
typedef long long ll;
typedef pair<int,int>pa;
typedef pair<ll,ll>pai;
const int N = 5e6+10;
int phi[N], primes[N], cnt;
bool st[N];
int get_euluer(int l, int r){
    phi[1] = 1;
    for(int i = 2; i <= r; i ++ ){
        if(!st[i]){
            primes[cnt++] = i;
            phi[i] = i-1;
        }
        for(int j = 0; i <= r/primes[j]; j++){
            st[i*primes[j]] = true;
            if(i%primes[j] == 0){
                phi[i*primes[j]] = phi[i] * primes[j];
                break;
            }
            phi[i*primes[j]] = phi[i]*(primes[j] - 1);
        }
    }
    int ans = l, mi = phi[l];
    For(i,l,r){
        if(phi[i]<mi){
            ans = i;
            mi = phi[i];
        }
    }
    return ans;
}
int main()
{
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int l, r;
    cin>>l>>r;
    cout<<get_euluer(l,r);
    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值