Fractions

题目描述

You are given a positive integer n.

Find a sequence of fractions ai / bi, i = 1…k (where ai and bi are positive integers) for some k such that:

  • bi divides n, 1 < bi < n for i = 1…k
  • 1 ≤ ai < bi for i = 1…k
  • ∑i=1kaibi=1−1n\sum_{i=1}^k\frac{a_i}{b_i}=1-\frac1n∑i=1k​bi​ai​​=1−n1​

 

输入描述:

The input consists of a single integer n (2 ≤ n ≤ 109).

输出描述:

In the first line print “YES” if there exists such a sequence of fractions or “NO” otherwise.
If there exists such a sequence, next lines should contain a description of the sequence in the following format.
The second line should contain integer k (1 ≤ k ≤ 100 000) — the number of elements in the sequence. It is guaranteed that if such a sequence exists, then there exists a sequence of length at most 100 000.
Next k lines should contain fractions of the sequence with two integers ai and bi on each line.

示例1

输入

复制2

2

输出

复制NO

NO

示例2

输入

复制6

6

输出

复制YES 2 1 2 1 3

YES
2
1 2
1 3

说明

In the second example there is a sequence 1/2, 1/3 such that 1/2 + 1/3 = 1 − 1/6

 

#include<bits/stdc++.h>
using namespace std; 
int main(){
    int n;
    scanf("%d",&n);
    for(int i=2;i*i<=n;i++){
        if(n%i==0&&__gcd(i,n/i)==1){
            int x=i,y=n/i;
            for(int a=1;a<x;++a){
                if(n-1-a*x>0&&((n-1-a*y)%x==0)){
                    printf("YES\n");
                    cout << 2 << endl;
                    cout << a << " " << x << endl;
                    cout << (n - 1 - a * y) / x << " " << y << endl;
                    return 0;
                }
            }
        }
    }
    printf("NO\n");
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值