https://codeforces.com/contest/1311/problem/D

本题题意:给出a,b,c三个数,a<=b<=c;

可以对三个数中任意一个进行+1或-1的操作;

问题:求出最少操作数使这些数满足:b整除a,c整除b

思路:题目中给出abc的范围只有1e4

所以我们可以通过枚举的方式来找出答案;

我们通过枚举b的大小,然后计算在b为k值得情况下,a,c为哪个数最优

暴力枚举出最优情况即可;

细节:在枚举b为k时,对于a,我们可以通过预处理出b的因子,然后枚举因子与原本的数的差值,找出最优即可;

而对于c,有以下情况:

1.对于b>c的情况,我们只需要让c等于b

2.对于c>b的情况,我们有两种可能,1.c已经整除b,这种需要的操作数为0

                 2.c没整除b,所以可能让c减少到为b的倍数,或者增大到b的倍数,两者枚举找操作数小的即可;

所以这道题的做法就是:先预处理出范围内的因子,然后枚举;

代码如下:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. #define me(a,x) memset(a,x,sizeof a)
  5. #define rep(i,x,n) for(int i=x;i<n;i++)
  6. #define repd(i,x,n) for(int i=x;i<=n;i++)
  7. #define all(x) (x).begin(), (x).end()
  8. #define pb(a) push_back(a)
  9. #define paii pair<int,int>
  10. #define pali pair<ll,int>
  11. #define pail pair<int,ll>
  12. #define pall pair<ll,ll>
  13. #define fi first
  14. #define se second
  15. vector<int>g[];
  16. int a,b,c;
  17. void inist()
  18. {
  19. for(int i=;i<=;i++){
  20. for(int j=;j<=/i;j++)
  21. g[i*j].pb(i);
  22. }
  23.  
  24. }
  25. int work(int& aa,int bb,int& cc)
  26. {
  27. int ans=;
  28. int minn=;
  29. int l=g[bb].size();
  30. int x=aa;
  31. for(int i=;i<l;i++){
  32. if(minn>abs(g[bb][i]-aa)){
  33. minn=abs(g[bb][i]-aa);
  34. x=g[bb][i];
  35. }
  36. }
  37. aa=x;
  38. ans+=minn;
  39. if(bb>cc){
  40. ans+=abs(bb-cc);
  41. cc=bb;
  42. }
  43. if(cc%bb<bb-cc%bb){
  44. ans+=cc%bb;
  45. cc-=cc%bb;
  46. }
  47. else{
  48. ans+=bb-cc%bb;
  49. cc+=bb-cc%bb;
  50. }
  51. return ans;
  52. }
  53. int main()
  54. {
  55. inist();
  56. int t;
  57. cin>>t;
  58. while(t--){
  59. int ans=;
  60. int ansa,ansb,ansc;
  61. cin>>a>>b>>c;
  62. for(int i=;i<=;i++){
  63. int a1=a,b1=i,c1=c;
  64. int temp=abs(i-b);
  65. temp+=work(a1,b1,c1);
  66. if(temp<ans){
  67. ans=temp;
  68. ansa=a1;ansb=b1;ansc=c1;
  69. }
  70. }
  71. cout<<ans<<endl;
  72. cout<<ansa<<" "<<ansb<<" "<<ansc<<endl;
  73. }
  74. return ;
  75. }

D - Three Integers的更多相关文章

  1. [LeetCode] Sum of Two Integers 两数之和

    Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Exam ...

  2. [LeetCode] Divide Two Integers 两数相除

    Divide two integers without using multiplication, division and mod operator. If it is overflow, retu ...

  3. HDU 1796How many integers can you find(容斥原理)

    How many integers can you find Time Limit:5000MS     Memory Limit:32768KB     64bit IO Format:%I64d ...

  4. Leetcode Divide Two Integers

    Divide two integers without using multiplication, division and mod operator. 不用乘.除.求余操作,返回两整数相除的结果,结 ...

  5. LeetCode Sum of Two Integers

    原题链接在这里:https://leetcode.com/problems/sum-of-two-integers/ 题目: Calculate the sum of two integers a a ...

  6. Nim Game,Reverse String,Sum of Two Integers

    下面是今天写的几道题: 292. Nim Game You are playing the following Nim Game with your friend: There is a heap o ...

  7. POJ 3468 A Simple Problem with Integers(线段树 成段增减+区间求和)

    A Simple Problem with Integers [题目链接]A Simple Problem with Integers [题目类型]线段树 成段增减+区间求和 &题解: 线段树 ...

  8. LeetCode 371. Sum of Two Integers

    Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Exam ...

  9. leetcode-【中等题】Divide Two Integers

    题目 Divide two integers without using multiplication, division and mod operator. If it is overflow, r ...

  10. 解剖SQLSERVER 第十三篇 Integers在行压缩和页压缩里的存储格式揭秘(译)

    解剖SQLSERVER 第十三篇    Integers在行压缩和页压缩里的存储格式揭秘(译) http://improve.dk/the-anatomy-of-row-amp-page-compre ...

随机推荐

  1. 全志V3S 编译运行xboot笔记

    目录 全志V3S 编译运行xboot笔记 1.目的 2.环境准备 3.下载 3.1 fel模式进入 3.2 sunxi-fel工具的使用 3.3 烧录 4.串口打印 5.总结 全志V3S 编译运行xb ...

  2. ES6 - 基础学习(8): Promise 对象

    概述 Promise是异步编程的一种解决方案,比传统的解决方案(多层嵌套回调.回调函数和事件)更强大也更合理.从语法上说,Promise是一个对象,从它可以获取异步操作的消息,Promise 还提供了 ...

  3. ArcMap制图遇到的小问题

    情况一 在attributes table中查看,发现是一条记录,实际上这一条记录由多个面要素组合而成,且彼此间没有交集,现在需要把他们全部分开来,单独独立变成一条要素记录 方法: Editor--& ...

  4. 【转载】structlog4j介绍

    源文章:structlog4j介绍 结构化日志对于日志的收集的作用挺大的,根据自身的业务场景,基于SLF4J实现了structlog4j. 相关引用 Gradle // 基础包 compile 'te ...

  5. VUE中使用XLSX实现导出excel表格

    简介 项目中经常会用导出数据的场景,这里介绍 VUE 中如何使用插件 xlsx 导出数据 安装 ## 1.使用 npm 或 yarn 安装依赖(三个依赖) npm install -S file-sa ...

  6. Kubernetes CI/CD(1)

    本文通过在kubernetes上启动Jenkins服务,并将宿主机上的docker.docker.sock挂载到Jenkins容器中,实现在Jenkins容器中直接打镜像的形式实现CI功能. Kube ...

  7. 【Android】安卓Q适配指南-相册

    碎碎念 本来每次安卓版本升级都是非常期待的事情,但是开发者就吃苦了!!! 尤其是从Q开始,应用采用沙盒模式,即各种公共文件的访问都会受到限制... 所以适配Q成了当务之急,然鹅网上关于适配的资料少之又 ...

  8. 2018 IEEE极限编程大赛 题解

    去年742,今年72,也算一种小小的进步. 明年前30(笑 1. Drawing Rooted Binary Trees 给定一个树的中序和前序的遍历,要求输出这棵树(包括空格的) #include ...

  9. 判定PDF文件是否能够正常打开

    下载iTextSharp.dll using iTextSharp.text.pdf; PdfReader reader = new PdfReader(strPath + "\\" ...

  10. Xamarin.Forms弹出对话框插件

    微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言: 如果您觉得Dotnet9对您有帮助,欢迎赞赏. Xamarin.Forms弹出对话框插件 内容目录 实现效果 业务场景 编码 ...