-
Notifications
You must be signed in to change notification settings - Fork 0
/
A1033_2.cpp
77 lines (72 loc) · 1.42 KB
/
A1033_2.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
#include<iostream>
#include<algorithm>
using namespace std;
struct g{
float p; // 是价格
float d; // 是距离 ,也就是离杭州的距离
}gas[500];
bool cmp(g a,g b){
return a.d < b.d;
}
int main(){
float c,d,davg;
int n;
scanf("%f %f %f %d",&c,&d,&davg,&n);
int i=0;
for(i=0;i<n;i++){
scanf("%f %f",&gas[i].p,&gas[i].d);
}
gas[n].p =0.0;
gas[n].d = d;
sort(gas,gas+n,cmp);
// for(int i=0;i<=n;i++){
// cout<<endl<<gas[i].d<<" "<<gas[i].p<<endl;
// }
float max = c*davg;
float dis =0.0;
float money =0.0;
if(gas[0].d != 0.0){
printf("The maximum travel distance = %0.2f",dis);
}
//
bool flag = true;
int now = 0;
int next = now+1;
while( flag == true ){
if((gas[next].d - gas[now].d) > max){
dis += max;
printf("The maximum travel distance = %0.2f",dis);
return 0;
}
else{ //意思就是能到
// if(gas[next].p <= gas[now].p){
// dis += gas[next].d - gas[now].d;
// money += dis*gas[now].p;
// now = next;
// next = now+1;
// if(next == n){
// money += (gas[next].d-gas[now].d)*gas[i].p;
// printf("%0.2f",money);
// return 0;
// }
// }
// //如果票价更高
// else{
// next = next +1;
// if(next == n){
// money += (gas[next].d-gas[now].d)*gas[i].p;
// printf("%0.2f",money);
// return 0;
// }
// else{
//
// }
// }
}
if(next == n){
money += (gas[next].d-gas[now].d)*gas[i].p;
printf("%0.2f",money);
return 0;
}
}
}