Codeforces 923A - Primal Sport
2400 단어 기초수론Codeforces
A. Primal Sport
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
Alice and Bob begin their day with a quick game. They first choose a starting number X0 ≥ 3 and try to reach one million by the process described below.
Alice goes first and then they take alternating turns. In the i-th turn, the player whose turn it is selects a prime number smaller than the current number, and announces the smallest multiple of this prime number that is not smaller than the current number.
Formally, he or she selects a prime p Xi - 1 and then finds the minimum Xi ≥ Xi - 1 such that p divides Xi. Note that if the selected prime palready divides Xi - 1, then the number does not change.
Eve has witnessed the state of the game after two turns. Given X2, help her determine what is the smallest possible starting number X0. Note that the players don't necessarily play optimally. You should consider all possible game evolutions.
Input
The input contains a single integer X2 (4 ≤ X2 ≤ 106). It is guaranteed that the integer X2 is composite, that is, is not prime.
Output
Output a single integer — the minimum possible X0.
Examples
input
Copy
14
output
6
input
Copy
20
output
15
input
Copy
8192
output
8191
Note
In the first test, the smallest possible starting number is X0 = 6. One possible course of the game is as follows:
Alice picks prime 5 and announces X1 = 10
Bob picks prime 7 and announces X2 = 14.
In the second case, let X0 = 15.
Alice picks prime 2 and announces X1 = 16
Bob picks prime 5 and announces X2 = 20.
분석: f(n)를 설정하면 N의 최대 질량 계수를 나타냅니다.
그러면 X2를 분해한 후에 X1의 수치 범위는 [X2-P(X2)+1, X2]이고 X0의 수치는 [X1-P(X1)+1, X1]이다.
시간 복잡도 O(N*sqrt(N))
Bonus: Q개 쿼리 Xk, 시간 복잡도 O (N log N + Q log K)
코드는 다음과 같습니다.
#include
using namespace std;
const int maxn = 1e6+10;
int n,ans;
int f[maxn];
inline int Min(int x, int y) {return x
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[CF 817F] MEX Queries(라인 트리)길이 1018 1018의 0101 서열을 유지하고 도자기 구간에 값을 부여하고 구간에서 반전을 취하며 첫 번째 0의 위치를 조회해야 한다. 이산화 후 라인 트리로 역표기, 부치표기를 유지하면 됩니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.