-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathBuy_And_Sell_Stocks.cpp
49 lines (46 loc) · 928 Bytes
/
Buy_And_Sell_Stocks.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
/* problem statement
first input is n representing the number of days
after that we have n values ,representing the price of stock on that day
output should be maximum profit , if you can buy and sell only one time
*/
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n; // it represent the number of days
int arr[n]; // this array contains the prices of stock on that day
for (int i = 0; i < n; i++)
cin >> arr[i];
int lsf = 9999999; //least so far
int op = 0; //overall profit
int pist = 0;
for (int i = 0; i < n; i++)
{
if (arr[i] < lsf)
{
lsf = arr[i];
}
int pist = arr[i] - lsf; // if stock is sold today
if (pist > op)
{
op = pist;
}
}
cout << op << endl;
}
/* sample input values are
9
11
6
7
19
4
1
6
18
4
*/
/*sample output value for the upper input
17
*/