贪心加高精

传送门:QWQ

先考虑两个人

a0 b0
p1 a1 b1
p2 a2 b2

那么满足:\(\huge ans1=\max(\frac{a0}{b1} , \frac{a0a1}{b2})\)

a0 b0
p2 a2 b2
p2 a1 b1

\(\huge ans2=\max(\frac{a0}{b2} , \frac{a0a2}{b1})\)

如果要让ans1<ans2

设 \(k1=\frac{a0}{b1} , k2=\frac{a0a1}{b2} , k3=\frac{a0}{b2} , k4=\frac{a0a2}{b1}\)

则 k1< k4

k2 > k3

如果要让ans1<ans2

那么 k4 > k2

展开,得:\(\frac{a0a2}{b1} > \frac{a0a1}{b2}\)

移项得:\(a1b1<a2b2\)

根据冒泡排序

两个相邻交换一定使答案更差

所以可以根据ab的大小排序(下标排序)

然后就是麻烦的高精了

  1. //自动无视c++14
  2. // luogu-judger-enable-o2
  3. #include<iostream>
  4. #include<cstdio>
  5. #include<cstring>
  6. #include<algorithm>
  7. using namespace std;
  8. const int maxn=1e4+5;
  9. int n;
  10. // The MIT License (MIT)
  11. // Copyright (c) YEAR NAME
  12. // Permission is hereby granted, free of charge, to any person obtaining a
  13. // copy of this software and associated documentation files (the "Software"),
  14. // to deal in the Software without restriction, including without limitation
  15. // the rights to use, copy, modify, merge, publish, distribute, sublicense,
  16. // and/or sell copies of the Software, and to permit persons to whom the
  17. // Software is furnished to do so, subject to the following conditions:
  18. //
  19. // The above copyright notice and this permission notice shall be included in
  20. // all copies or substantial portions of the Software.
  21. //
  22. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  23. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  24. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  25. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  26. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  27. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  28. // DEALINGS IN THE SOFTWARE.
  29. struct big{
  30. static const int base=10000;
  31. int a[2333];
  32. int len;
  33. big(){memset(a,'\000',sizeof a);len=1;}
  34. int& operator[](int x){return a[x];}
  35. big(int x){*this=x;}
  36. big& operator =(int x){
  37. *this=big();
  38. for(len=0;x;x/=base)a[++len]=x%base;
  39. if(!x)len=1;
  40. return *this;
  41. }
  42. friend big operator + (const big&a,const big& b){
  43. big c;
  44. c.len=max(a.len,b.len);
  45. for(int i=1;i<=c.len;++i){
  46. c[i+1]+=((c[i]+=(a.a[i]+b.a[i]))/base);
  47. c[i]%=base;
  48. }
  49. if(c[c.len+1])c.len++;
  50. return c;
  51. }
  52. friend big operator * (const big&a,const big& b){
  53. big c;
  54. c.len=a.len+b.len-1;
  55. for(int i=1;i<=a.len;++i){
  56. for(int j=1;j<=b.len;++j){
  57. c[i+j-1]+=a.a[i]*b.a[j];
  58. c[i+j]+=c[i+j-1]/base;
  59. c[i+j-1]%=base;
  60. }
  61. }
  62. while(c[c.len+1]){
  63. c[c.len+1]+=c[c.len]/base;
  64. c[c.len]%=base;
  65. c.len++;
  66. }
  67. return c;
  68. }
  69. friend big operator + (const big a,int b){big c(b);return a+c;}
  70. friend big operator * (const big a,int b){big c(b);return a*c;}
  71. friend bool operator < (const big & a,const big&b){
  72. if(a.len==b.len){
  73. for(int i=a.len;i;--i){
  74. if(a.a[i]!=b.a[i])return a.a[i]<b.a[i];
  75. }
  76. }else{
  77. return a.len<b.len;
  78. }
  79. return 0;
  80. }
  81. friend big operator / (const big& a,int x){
  82. big ans;
  83. ans.len=a.len;
  84. int jw=0;
  85. for(int i=ans.len;i;--i){
  86. ans[i]=(jw*base+a.a[i])/x;
  87. ((jw*=base)+=a.a[i])%=x;
  88. }
  89. while(!ans[ans.len]&&ans.len)ans.len--;
  90. return ans;
  91. }
  92. void print()const{printf("%d",a[len]);
  93. for(int i=len-1;i;i--){
  94. printf("%04d",a[i]);
  95. }
  96. }
  97. friend ostream& operator << (ostream& out,const big& a){
  98. a.print();
  99. return out;
  100. }
  101. };
  102. int a[maxn],b[maxn];
  103. int bit[maxn];
  104. big f[maxn];
  105. big ans;
  106. big mul(1);
  107. int main(){
  108. cin>>n;
  109. for(int i=0;i<=n;++i){
  110. cin>>a[i]>>b[i];
  111. big x(a[i]),y(b[i]);
  112. f[i]=x*y;
  113. bit[i]=i;
  114. }
  115. sort(bit+1,bit+1+n,[](const int& a,const int& b){
  116. return f[a]<f[b];
  117. });
  118. for(int i=0;i<=n;++i){
  119. if(i)ans=max(ans,mul/b[bit[i]]);
  120. mul=mul*a[bit[i]];
  121. }
  122. ans.print();
  123. return 0;
  124. }

luogu P1080国王游戏的更多相关文章

  1. Luogu P1080国王游戏(贪心)

    国王游戏 题目链接:国王游戏 ps:题目数据说明了要写高精度. 这个题的答案是\(a.l * a.r < b.l * b.r\)按照这个进行排序 题解中大部分只是如何证明排序是: \(a.l * ...

  2. luogu P1080 国王游戏

    题目描述 恰逢 H 国国庆,国王邀请 n 位大臣来玩一个有奖游戏.首先,他让每个大臣在左.右手上面分别写下一个整数,国王自己也在左.右手上各写一个整数.然后,让这 n 位大臣排成一排,国王站在队伍的最 ...

  3. 【题解】洛谷 P1080 国王游戏

    目录 题目 思路 \(Code\) 题目 P1080 国王游戏 思路 贪心+高精度.按\(a \times b\)从小到大排序就可以了. \(Code\) #include<bits/stdc+ ...

  4. P1080 国王游戏 (等待高精度AC)

    P1080 国王游戏 题解 贪心策略:按照大臣左右手数字乘积从小到大排序 假设我们已经把大臣排了一个顺序 假定在这个顺序下我们可以保证  得到奖赏最多的大臣所得奖赏最少 那么我们一旦交换任意两个大臣, ...

  5. 【流水调度问题】【邻项交换对比】【Johnson法则】洛谷P1080国王游戏/P1248加工生产调度/P2123皇后游戏/P1541爬山

    前提说明,因为我比较菜,关于理论性的证明大部分是搬来其他大佬的,相应地方有注明. 我自己写的部分换颜色来便于区分. 邻项交换对比是求一定条件下的最优排序的思想(个人理解).这部分最近做了一些题,就一起 ...

  6. 洛谷—— P1080 国王游戏

    https://www.luogu.org/problem/show?pid=1080 题目描述 恰逢 H 国国庆,国王邀请 n 位大臣来玩一个有奖游戏.首先,他让每个大臣在左.右手上面分别写下一个整 ...

  7. 洛谷P1080 国王游戏【大数】【贪心】

    题目:https://www.luogu.org/problemnew/show/P1080 题意: 一个国王和n个大臣,每个人左右手上都有一个数值. 现在将国王排在队首,将大臣进行排序.每个大臣的值 ...

  8. [NOIP2012] 提高组 洛谷P1080 国王游戏

    题目描述 恰逢 H 国国庆,国王邀请 n 位大臣来玩一个有奖游戏.首先,他让每个大臣在左.右 手上面分别写下一个整数,国王自己也在左.右手上各写一个整数.然后,让这 n 位大臣排 成一排,国王站在队伍 ...

  9. [贪心][高精]P1080 国王游戏(整合)

    题目描述 恰逢 H 国国庆,国王邀请 n 位大臣来玩一个有奖游戏.首先,他让每个大臣在左.右手上面分别写下一个整数,国王自己也在左.右手上各写一个整数.然后,让这 n 位大臣排成一排,国王站在队伍的最 ...

随机推荐

  1. springboot用于web开发

    1.使用SpringBoot:1)创建SpringBoot应用,选中我们需要的模块:2)SpringBoot已经默认将这些场景配置好了,只需要在配置文件中指定少量配置就可以运行起来3)自己编写业务代码 ...

  2. C 和 CPP 混合代码cmath编译出错

    Visual Studio会将cmath内的一些列函数报错 解决方式:项目->属性->配置属性->C/C++ ->高级->编译为->选择编译为C++代码即可

  3. 关于更新vs2017后发布的问题 命令“bower install”已退出,代码为 9009

    更新vs2017 尝试发布 出现  命令“bower install”已退出,代码为 9009 然后我点工具测试了一下nodejs 出现下图弹窗  百度了一下 没找到对策,有没有大侠知道怎么解决 解决 ...

  4. 实践作业4---DAY5阶段四。

    阶段四:分析 这一阶段工作就是分析博客园与csdn优点缺点: 根据邹欣老师在<现代软件工程>一书中的描述: 程序 = 算法 + 数据结构: 软件 = 程序 + 软件工程(软件服务还有数据, ...

  5. [GO]非结构体匿名字段

    package main import ( "fmt" ) type mystr string //给一个类型重命名 type Person struct { name strin ...

  6. Html创建表单

    echo Html::beginForm(['/site/logout'], 'post'); echo Html::submitButton(Yii::t('app', 'logout'), ['c ...

  7. java上转型之instanceof--避免引用类型强制转化出错

    Object obj="hello"; 上面的obj是什么类型? object?NO!String?NO? 答案:编译阶段是Object类型,而在运行阶段是String类型.实际上 ...

  8. 可epoll队列

    什么是可epoll队列? 就可以使用epoll来监控队列中是否有数据的队列,当然也支持select和poll. 应用场景 一个线程,需要将队列(共享内存队列或普通队列均可)中的数据取出来,然后通过网络 ...

  9. Tango Java API常数

    Tango Java API Constants常数 Constant Field Values常数字段值 Contents com.google.* com.google.* com.google. ...

  10. 编写高质量代码改善C#程序的157个建议——建议104:用多态代替条件语句

    建议104:用多态代替条件语句 假设要开发一个自动驾驶系统.在设计之初,此自动驾驶系统拥有一个驾驶系统命令的枚举类型: enum DriveCommand { Start, Stop } 当前该枚举存 ...