-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path276A-lunch-rush.cpp
62 lines (59 loc) · 1.09 KB
/
276A-lunch-rush.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
// My solution
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int n, k, f, t, *temp, i;
scanf("%d %d", &n, &k);
temp = (int *)calloc(n, sizeof(int));
for (i = 0; i < n; i++)
{
scanf("%d %d", &f, &t);
if (t > k)
{
temp[i] = f - (t - k);
}
else
{
temp[i] = f;
}
}
sort(temp, temp + i, greater<int>());
printf("%d", temp[0]);
return 0;
}
// solution without using array
// #include <iostream>
// using namespace std;
// int main()
// {
// int n, k, f, t, res, temp;
// scanf("%d %d %d %d", &n, &k, &f, &t);
// if(t>k)
// {
// res = f - (t-k);
// }
// else
// {
// res = f;
// }
// while(--n)
// {
// scanf("%d %d", &f, &t);
// if (t > k)
// {
// temp = f - (t - k);
// }
// else
// {
// temp= f;
// }
// if(temp > res)
// {
// res = temp;
// }
// }
// printf("%d", res);
// return 0;
// }