-
Notifications
You must be signed in to change notification settings - Fork 89
/
equation.cpp
168 lines (156 loc) · 2.79 KB
/
equation.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include<bits/stdc++.h>
#include<math.h>
#include<string.h>
#include<vector>
#include<stdlib.h>
using namespace std;
typedef long long int ll;
typedef long double lld;
/*#define debug(x);
printf(x);*/
void init()
{
#ifndef ONLINE_JUDGE
freopen("input.txt" , "r" ,stdin);
freopen("output.txt" , "w" ,stdout);
#endif
}
void debugger()
{
#ifndef ONLINE_JUDGE
freopen("input.txt" , "r" ,stdin);
freopen("output.txt" , "w" ,stdout);
#endif
#ifdef debugger
#define debug(x) cerr << #x<<" "; _print(x); cerr << endl;
#else
#define debug(x);
#endif
}
const int MAXN = (int)((1e5) + 100);
int gcd(int a, int b) { if (a == 0) return b; return gcd(b % a, a);}
int max(int a, int b) {if (a > b) return a; else return b;}
int min(int a, int b) {if (a < b) return a; else return b;}
void precision(int a)
{
cout << setprecision(a) << fixed;
}
//** pritishcf307 **//
//**------------------------------------------------------------------------------------------------------**//
bool check(ll n)
{
ll j;
j=sqrt(n);
if(j*j==n)
{
return true;
}
else
{
return false;
}
return 0;
}
int main()
{
init();
lld a,b,c;
ll ans;
lld disc,disc1;
lld p,q;
lld a1,a2;
cin >> a >> b >> c;
if(a==0 && b==0 && c==0)
{
cout << -1 << endl;
}
else if(a==0 && b==0 && c!=0)
{
cout << 0 << endl;
}
else if(a==0 && c==0 && b!=0)
{
ans=1;
cout << ans << endl;
precision(10);
cout << 0.00000000 << endl;
}
else if(b==0 && c==0 && a!=0)
{
ans=1;
cout << ans << endl;
precision(10);
cout << 0.0000000 << endl;
}
else if(a==0 && b!=0 && c!=0)
{
ans=1;
cout << ans << endl;
precision(10);
cout << (-1.0*c)/b << endl;
}
else if(a!=0 && b!=0 && c==0)
{
ans=2;
cout << ans << endl;
precision(10);
a1= 0;
a2=(-1.0*b)/a;
if(a1>a2)
{
swap(a1,a2);
}
cout << a1 << endl << a2 << endl;
}
else if(a!=0 && b==0 && c!=0)
{
if(c>0)
{
cout << 0 << endl;
}
else if(c<0)
{
ans=2;
cout << ans << endl;
precision(10);
a1 = +1.0*sqrt(c/a);
a2 = -1.0*sqrt(c/a);
if(a1>a2)
{
swap(a1,a2);
}
cout << a1 << endl << a2 << endl;
}
}
else if(a!=0 && b!=0 && c!=0)
{
disc1= ((b*b) - 4*a*c);
if(disc1>0)
{
ans=2;
cout << ans << endl;
precision(10);
a1 = ((-1.0*b)-sqrt(disc1))/(2*a);
a2 = ((-1.0*b)+sqrt(disc1))/(2*a);
if(a1>a2)
{
swap(a1,a2);
}
cout << a1 << endl << a2 << endl;
}
else if(disc1==0)
{
ans=1;
cout << ans << endl;
precision(10);
cout << (-1.0*(b))/(2*a);
}
else if(disc1 < 0)
{
cout << 0 << endl;
}
}
return 0;
}
//author
//pritish panda