Divisor Subtraction(CodeForces 1076B)

本文探讨了一种针对整数的特殊算法,该算法通过反复减去输入整数的最小素数因子直至达到零,计算过程中减法操作的总次数。文章提供了算法的详细解释及代码实现,适用于对数论和算法设计感兴趣的读者。
部署运行你感兴趣的模型镜像

Description

You are given an integer number nn. The following algorithm is applied to it:

  1. if n=0, then end algorithm;
  2. find the smallest prime divisor d of n;
  3. subtract dd from nn and go to step 1.

Determine the number of subtrations the algorithm will make.

Input

The only line contains a single integer nn (2≤n≤10^10).

Output

Print a single integer — the number of subtractions the algorithm will make.

Input

5

Output

1

Input

4

Output

2

Hint

In the first example 5 is the smallest prime divisor, thus it gets subtracted right away to make a 0.

In the second example 2 is the smallest prime divisor at both steps.

代码如下:

#include<algorithm>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<cmath>
#include<stack>
#include<queue>
#include<map>
#include<set>
#define memset(x,y) memset(x,y,sizeof(x))
#define swap(a,b)  (a=a+b,b=a-b,a=a-b)
#define debug(x) cout<<x<<" "<<endl
#define rson i << 1 | 1,m + 1,r
#define e  2.718281828459045
#define max(a,b)   (a>b?a:b)
#define min(a,b)   (a<b?a:b)
#define read(x) scanf("%d",&x)
#define put(x) printf("%d\n",x)
#define lowbit(x) (x&(-x))
#define lson i << 1,l,m
#define INF 0x3f3f3f3f
#define ll long long
#define mod 1001113
#define N 100000000
#define PI acos(-1)
#define eps 1.0e-6
#define maxn 27
//std::ios::sync_with_stdio(false);
//cin.tie(NULL);
//const int maxn=;
using namespace std;



int main()
{
    ll n;
    cin>>n;
    for(ll i=2;i*i<=n;i++)
    {
        if(n%i==0)
        {
            cout<<1+(n-i)/2<<endl;
            return 0;
        }
    }
    cout<<"1"<<endl;
    return 0;
}

 

您可能感兴趣的与本文相关的镜像

ACE-Step

ACE-Step

音乐合成
ACE-Step

ACE-Step是由中国团队阶跃星辰(StepFun)与ACE Studio联手打造的开源音乐生成模型。 它拥有3.5B参数量,支持快速高质量生成、强可控性和易于拓展的特点。 最厉害的是,它可以生成多种语言的歌曲,包括但不限于中文、英文、日文等19种语言

### 算法实现 在IT领域,有多种算法可以实现最大公约数(Greatest Common Divisor)的计算,以下是常见的算法及其不同编程语言的实现: - **欧几里得算法(辗转相除法)**:该算法思路简单且实现代码量少,其基本原理是 `gcd(a, b) = gcd(b, a % b)`,当 `b` 为 0 时,`a` 就是最大公约数。 - **Go语言实现**: ```go package main import "fmt" func gcd(a, b int) int { for b != 0 { a, b = b, a%b } return a } func main() { num1 := 48 num2 := 18 result := gcd(num1, num2) fmt.Printf("The greatest common divisor of %d and %d is %d\n", num1, num2, result) } ``` - **Python实现**: ```python def greatest_common_divisor(a: int, b: int) -> int: return abs(b) if a == 0 else greatest_common_divisor(b % a, a) def gcd_by_iterative(x: int, y: int) -> int: while y: x, y = y, x % y return abs(x) nums = input("Enter two integers separated by comma (,): ").split(",") try: num_1 = int(nums[0]) num_2 = int(nums[1]) print( f"greatest_common_divisor({num_1}, {num_2}) = " f"{greatest_common_divisor(num_1, num_2)}" ) print(f"By iterative gcd({num_1}, {num_2}) = {gcd_by_iterative(num_1, num_2)}") except (IndexError, UnboundLocalError, ValueError): print("Wrong input") ``` - **Objective - C实现**: ```objc #import <Foundation/Foundation.h> int gcd(int a, int b) { if (b == 0) { return a; } else { return gcd(b, a % b); } } int main(int argc, const char * argv[]) { @autoreleasepool { int num1 = 48; int num2 = 18; int result = gcd(num1, num2); NSLog(@"The greatest common divisor of %d and %d is %d", num1, num2, result); } return 0; } ``` - **Stein算法**:对于数据长度较大的特殊情况,Stein算法能够规避进行除法和取模操作,而通过位运算来替代,效率相对更高。其正确性基于 `gcd(a,a) = a` 和 `gcd(ka,kb) = k gcd(a,b)` 等结论,特殊的,当 `k = 2` 时,说明两个偶数的最大公约数必然能被 2 整除 [^3][^5]。 ### 应用场景 - **密码学**:在密码学的一些算法中,如RSA算法,需要计算两个大素数的最大公约数来确保密钥的安全性。通过计算最大公约数可以判断两个数是否互质,这对于生成公钥和私钥非常重要。 - **分数化简**:在计算机程序中处理分数时,需要将分数化为最简形式,这就需要计算分子和分母的最大公约数,然后将分子和分母同时除以最大公约数。 - **数据压缩**:在某些数据压缩算法中,可能会用到最大公约数来进行数据的优化处理,例如对数据块的大小进行调整。 - **计算机图形学**:在图形处理中,计算线段的最简比例、坐标的缩放等操作可能会涉及到最大公约数的计算。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值