数论五·欧拉函数 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;
}