记录编号 315972 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [NOIP 2012]开车旅行 最终得分 100
用户昵称 Gravatar可以的. 是否通过 通过
代码语言 C++ 运行时间 3.733 s
提交时间 2016-10-06 07:46:42 内存使用 50.25 MiB
显示代码纯文本
  1. #include <cstdio>
  2. #include <iostream>
  3. #include <cmath>
  4. #include <algorithm>
  5. #include <set>
  6. #include <cstring>
  7. using namespace std;
  8. #define E puts("")
  9. const int maxn = 110000;
  10. typedef long long LL;
  11. const double INF = 5000000000LL;
  12. const double eps = 1e-10;
  13. int dcmp(double x){
  14. if(fabs(x) < eps) return 0;
  15. return x < 0 ? -1 : 1;
  16. }
  17. int n,m;
  18. struct City
  19. {
  20. int num,h;
  21. bool operator < (const City &b)const
  22. {
  23. return h < b.h;
  24. }
  25. }c[maxn];
  26. set < City > q;
  27. set < City > :: iterator it;
  28. #define read(x) scanf("%d",&x)
  29. void Read_one(){
  30. read(n);
  31. for(int i=1;i<=n;i++){
  32. read(c[i].h); c[i].num = i;
  33. }
  34. }
  35. struct Temp // 暂时存储i城市的next
  36. {
  37. int num,dif;
  38. bool operator < (const Temp &b)const
  39. {
  40. if(dif != b.dif) return dif < b.dif;
  41. return c[num].h < c[b.num].h;
  42. }
  43. }t[5];
  44. int nexta[maxn],nextb[maxn];
  45. void Find_next(int i){
  46. it = q.find(c[i]);
  47. int _t = 0;
  48. if(it != q.begin()){
  49. it -- ;
  50. t[++_t] = (Temp){ (*it).num , abs((*it).h - c[i].h) };
  51. if(it != q.begin()){
  52. it -- ;
  53. t[++_t] = (Temp){ (*it).num , abs((*it).h - c[i].h) };
  54. it ++ ;
  55. }
  56. it ++ ;
  57. }
  58. if((++it) != q.end()){
  59. t[++_t] = (Temp){ (*it).num , abs((*it).h - c[i].h) };
  60. if((++it) != q.end()){
  61. t[++_t] = (Temp){ (*it).num , abs((*it).h - c[i].h) };
  62. }
  63. }
  64. sort(t + 1,t + 1 + _t);
  65. nextb[i] = t[1].num; if(_t == 1) return;
  66. nexta[i] = t[2].num;
  67. }
  68. void Prepare_next(){
  69. for(int i=n;i>0;i--){
  70. q.insert(c[i]);
  71. if(i != n) Find_next(i);
  72. }
  73. /*
  74. puts("next : ");
  75. for(int i=1;i<=n;i++){
  76. printf("A = %d B = %d\n",nexta[i],nextb[i]);
  77. }E;
  78. */
  79. }
  80. LL fa[maxn][23],fb[maxn][23];
  81. int f[maxn][23];
  82. void Prepare_f(){
  83. for(int i=1;i<=n;i++){
  84. int pos1 = nexta[i], pos2 = nextb[nexta[i]];
  85. //从i出发走1轮
  86. fa[i][0] = pos1 ? abs(c[pos1].h - c[i].h) : 0;
  87. fb[i][0] = pos2 ? abs(c[pos2].h - c[pos1].h) : 0;
  88. f[i][0] = pos2; // 最后停在pos2
  89. }
  90. for(int j=1;j<20;j++){
  91. for(int i=1;i<=n;i++){
  92. f[i][j] = f[f[i][j-1]][j-1];
  93. fa[i][j] = fa[i][j-1] + fa[f[i][j-1]][j-1];
  94. fb[i][j] = fb[i][j-1] + fb[f[i][j-1]][j-1];
  95. }
  96. }
  97. }
  98. int x0,ans=0;
  99. LL da = 0 , db = 0;
  100.  
  101. double Query(int St,int X){
  102. // printf("S = %d : ",St);
  103. da = 0; db = 0;
  104. for(int i=20;i>=0;i--){
  105. if(f[St][i] && fa[St][i] + fb[St][i] <= X){
  106. da += (LL)fa[St][i]; db += (LL)fb[St][i];
  107. X -= fa[St][i] + fb[St][i];
  108. St = f[St][i];
  109. }
  110. }
  111. int posa=nexta[St];
  112. if(posa){
  113. LL dis = abs(c[posa].h - c[St].h);
  114. if(dis <= X) da += dis;
  115. }
  116. if(!db) return INF;
  117. else return ((long double)da/(long double)db);
  118. }
  119. void calc_one(){
  120. cin >> x0; ans = 0;
  121. double Min = 1e100;
  122. for(int i=1;i<=n;i++){
  123. double temp = Query(i,x0);
  124. if(dcmp(Min - temp) > 0 || (!dcmp(Min - temp) && c[ans].h < c[i].h)){
  125. Min = temp ; ans = i;
  126. }
  127. }
  128. printf("%d\n",ans);
  129. }
  130. void calc_two(){
  131. cin >> m;
  132. while(m -- ){
  133. int si,xi; cin >> si >> xi;
  134. double temp = Query(si,xi);
  135. printf("%lld %lld\n",da,db);
  136. }
  137. }
  138. void lala();
  139. int main(){
  140. freopen("drive.in","r",stdin);freopen("drive.out","w",stdout);
  141. Read_one();
  142. Prepare_next();
  143. Prepare_f();
  144. calc_one();
  145. calc_two();
  146. return 0;
  147. //lala();
  148. for(;;);
  149. }
  150. void lala(){
  151. double X,Y;
  152. while(scanf("%lf%lf",&X,&Y)==2){
  153. printf("%d\n",dcmp(X - Y));
  154. }
  155. }
  156.  
  157. /*
  158. 5
  159. -1000000000 0 -999999999 999999999 1000000000
  160. 1000000000
  161. 7
  162. 1 1000000000
  163. 2 1000000000
  164. 3 1000000000
  165. 4 1000000000
  166. 5 1000000000
  167. 1 2
  168. 2 3
  169.  
  170. 2
  171.  
  172. */
  173.