-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ6.cpp
70 lines (63 loc) · 1.36 KB
/
Q6.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
#include<iostream>
using namespace std;
struct contestant
{
int stime, btime, rtime, num;
};
void copy(contestant &c1, contestant &c2) //equating 1 element to another
{
c1.num = c2.num;
c1.stime = c2.stime;
c1.btime = c2.btime;
c1.rtime = c2.rtime;
}
bool compare(contestant c1, contestant c2) //function compares the two on the basis of bike time + run time
{
int s1 = c1.stime;
int br1 = c1.btime + c1.rtime;
int s2 = c2.stime;
int br2 = c2.btime + c2.rtime;
if(br1 < br2)
return true;
else
return false;
}
void sort(contestant c[], int n) //insertion sort
{
int i,j;
contestant con;
for(i=1; i<n; i++)
{
copy(con,c[i]); //to copy one element's data to a key
j=i-1;
while(j>=0 && compare(c[j],con))
{
copy(c[j+1],c[j]);
j=j-1;
}
copy(c[j+1], con);
}
}
int main()
{
int n;
while(true){
cout<<"\nEnter number of contestants: ";
cin>>n;
if(n>=1)
break;
cout<<"\nNumber of contestants should be at least 1\n";
}
contestant *c = new contestant[n];
for(int i=0;i<n;i++)
{
cout<<"\nEnter expected swimming time, biking time and running time of contestant "<<i+1<<": \n";
cin>>c[i].stime>>c[i].btime>>c[i].rtime;
c[i].num=i+1;
}
sort(c,n);
cout<<"\nOrder of sending out contestants is \n";
for(int j=0; j<n; j++)
cout<<c[j].num<<" ";
return 0;
}