-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathFraction.cpp
84 lines (63 loc) · 2.71 KB
/
Fraction.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Solution by Rahul Surana
***********************************************************
Petya is a big fan of mathematics, especially its part related to fractions.
Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (a < b) and that the fraction is called irreducible if its numerator and its denominator are coprime (they do not have positive common divisors except 1).
During his free time, Petya thinks about proper irreducible fractions and converts them to decimals using the calculator.
One day he mistakenly pressed addition button (+) instead of division button (÷) and got sum of numerator
and denominator that was equal to n instead of the expected decimal notation.
Petya wanted to restore the original fraction, but soon he realized that it might not be done uniquely. That's why he decided to determine
maximum possible proper irreducible fraction a/b such that sum of its numerator and denominator equals n.
Help Petya deal with this problem.
Input:
In the only line of input there is an integer n (3 ≤ n ≤ 1000), the sum of numerator and denominator of the fraction.
Output:
Output two space-separated positive integers a and b, numerator and denominator of the maximum possible proper irreducible fraction satisfying the given sum.
***********************************************************
*/
#include <bits/stdc++.h>
#define ll long long
#define vl vector<ll>
#define vi vector<int>
#define pi pair<int,int>
#define pl pair<ll,ll>
#define all(a) a.begin(),a.end()
#define mem(a,x) memset(a,x,sizeof(a))
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define FOR(i,a) for(int i = 0; i < a; i++)
#define trace(x) cerr<<#x<<" : "<<x<<endl;
#define trace2(x,y) cerr<<#x<<" : "<<x<<" | "<<#y<<" : "<<y<<endl;
#define trace3(x,y,z) cerr<<#x<<" : "<<x<<" | "<<#y<<" : "<<y<<" | "<<#z<<" : "<<z<<endl;
#define fast_io std::ios::sync_with_stdio(false),cin.tie(NULL),cout.tie(NULL)
using namespace std;
// int p[1001];
// void seive_of_erathros(){
// p[0] = 0;
// p[1] = 1;
// for(int i = 2; i < 1000; i++){
// p[i] = 1;
// for(int j = i*i;j< 1000;j+=i){
// p[i] = 0;
// }
// }
// }
int main()
{
fast_io;
// int t;
// cin >> t;
// while(t--) {
int n;
cin >> n;
int a=0,b=1;
for(int i = n-1; i>=1 && i>n-i; i--){
if(__gcd(i,n-i) == 1){
a = i; b=n-i;
}
}
cout << b << " "<< a<<"\n";
// }
}