题目链接

比较棒的一道题,

题意: 给你一个N个数的数组,让你用尽量少的操作使整个数组的gcd大于1,即gcd(a1 ,a2,,,,an) > 1

如果可以输出YES和最小的次数,否则输出NO

首先我们来看一下这个操作,

如果对   a b 老两个数进行操作

第一次为 a-b a+b

第二次为 -2b  2a

由此可见,任何两个数最多进行两次操作,可以让他们都能被2整除。

所以也就没有NO的情况。

那么我们只需要预处理一下gcd,如果>1了,直接输出0次。

gcd=1的话,那么就需要我们去处理这个字符串了。又上边的推导可见,我们以gcd=2为目标去实现是最优解。

我们进入循环,找到一个a[i] 是odd的话,我们就和a[i+1] 进行处理,然后记录操作的次数,以此处理整个数组。

最终得出答案。

其他的一些题解讲到要先处理两个一起的odd再处理和even一起的odd,

我实在不懂为什么要这么分优先级,直接一个for遇到odd就去处理就可以是最优解,无语多虑。

具体细节请看代码:

my code :

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <queue>
  7. #include <stack>
  8. #include <map>
  9. #include <set>
  10. #include <vector>
  11. #define rep(i,x,n) for(int i=x;i<n;i++)
  12. #define repd(i,x,n) for(int i=x;i<=n;i++)
  13. #define pii pair<int,int>
  14. #define pll pair<long long ,long long>
  15. #define gbtb std::ios::sync_with_stdio(false)
  16. #define MS0(X) memset((X), 0, sizeof((X)))
  17. #define MSC0(X) memset((X), '\0', sizeof((X)))
  18. #define pb push_back
  19. #define mp make_pair
  20. #define fi first
  21. #define se second
  22. #define gg(x) getInt(&x)
  23. using namespace std;
  24. typedef long long ll;
  25. inline void getInt(int* p);
  26. const int maxn=;
  27. const int inf=0x3f3f3f3f;
  28. /*** TEMPLATE CODE * * STARTS HERE ***/
  29. int n;
  30. ll a[maxn];
  31. ll gcd(ll a,ll b)
  32. {
  33. return b?gcd(b,a%b):a;
  34. }
  35. int main()
  36. {
  37. gg(n);
  38. ll x=0ll;
  39. repd(i,,n)
  40. {
  41. scanf("%lld",&a[i]);
  42. x=gcd(x,a[i]);
  43. }
  44. if(x>)
  45. {
  46. printf("YES\n");
  47. printf("0\n");
  48. }else
  49. {
  50. ll ans=0ll;
  51. repd(i,,n)
  52. {
  53. while(a[i]%!=)
  54. {
  55. ans++;
  56. if(i!=n)
  57. {
  58. ll y1=a[i];
  59. ll y2=a[i+];
  60. a[i]=y1-y2;
  61. a[i+]=y1+y2;
  62. }else
  63. {
  64. ll y1=a[i-];
  65. ll y2=a[i];
  66. a[i-]=y1-y2;
  67. a[i]=y1+y2;
  68. }
  69. }
  70. }
  71. printf("YES\n");
  72. printf("%lld\n",ans);
  73.  
  74. }
  75.  
  76. return ;
  77. }
  78.  
  79. inline void getInt(int* p) {
  80. char ch;
  81. do {
  82. ch = getchar();
  83. } while (ch == ' ' || ch == '\n');
  84. if (ch == '-') {
  85. *p = -(getchar() - '');
  86. while ((ch = getchar()) >= '' && ch <= '') {
  87. *p = *p * - ch + '';
  88. }
  89. }
  90. else {
  91. *p = ch - '';
  92. while ((ch = getchar()) >= '' && ch <= '') {
  93. *p = *p * + ch - '';
  94. }
  95. }
  96. }

Mike and gcd problem CodeForces - 798C (贪心思维+数论)的更多相关文章

  1. Mike and gcd problem CodeForces - 798C

    题目 (智商题 or 糟心的贪心) 题意: 有一个数列a1,a2,...,an,每次操作可以将相邻的两个数x,y变为x-y,x+y,求最少的操作数使得gcd(a1,a2,...,an)>1.gc ...

  2. Codeforces 798C. Mike and gcd problem 模拟构造 数组gcd大于1

    C. Mike and gcd problem time limit per test: 2 seconds memory limit per test: 256 megabytes input: s ...

  3. Codeforces Round #410 (Div. 2)C. Mike and gcd problem

    题目连接:http://codeforces.com/contest/798/problem/C C. Mike and gcd problem time limit per test 2 secon ...

  4. 【算法系列学习】codeforces C. Mike and gcd problem

    C. Mike and gcd problem http://www.cnblogs.com/BBBob/p/6746721.html #include<iostream> #includ ...

  5. codeforces#410C Mike and gcd problem

    题目:Mike and gcd problem 题意:给一个序列a1到an ,如果gcd(a1,a2,...an)≠1,给一种操作,可以使ai和ai+1分别变为(ai+ai+1)和(ai-ai+1); ...

  6. CF798 C. Mike and gcd problem

    /* CF798 C. Mike and gcd problem http://codeforces.com/contest/798/problem/C 数论 贪心 题意:如果一个数列的gcd值大于1 ...

  7. #410div2C. Mike and gcd problem

    C. Mike and gcd problem time limit per test 2 seconds memory limit per test 256 megabytes input stan ...

  8. codeforces 798 C. Mike and gcd problem(贪心+思维+数论)

    题目链接:http://codeforces.com/contest/798/problem/C 题意:给出一串数字,问如果这串数字的gcd大于1,如果不是那么有这样的操作,删除ai, ai + 1 ...

  9. Codeforces 798C - Mike and gcd problem(贪心+数论)

    题目链接:http://codeforces.com/problemset/problem/798/C 题意:给你n个数,a1,a2,....an.要使得gcd(a1,a2,....an)>1, ...

随机推荐

  1. web前端(2)—— 前端技术介绍

    前端技术 前文了解了什么是前端,那么前端技术到底有哪些呢?最核心的就这三个: html/html5 css/css3 javascript 什么是HTML HyperText Markup Langu ...

  2. 洗礼灵魂,修炼python(82)--全栈项目实战篇(10)—— 信用卡+商城项目(模拟京东淘宝)

    本次项目相当于对python基础做总结,常用语法,数组类型,函数,文本操作等等 本项目在博客园里其他开发者也做过,我是稍作修改来的,大体没变的 项目需求: 信用卡+商城: A.信用卡(类似白条/花呗) ...

  3. MySQL8.0关于caching_sha2_password Plugin的一个Bug

    今天在调试使用ansible进行标准化安装MySQL8.0时,发现关于caching_sha2_password plugin的一个bug. 在搭建主从复制时,按照手册说明需要创建用户: create ...

  4. 高通 NXP NFC(PN547PN548) 移植流程 android6.0

    一.驱动部分 首先向NXP 的 fae要android 6.0 bring up的代码,如:NFC_NCIHALx_AR0F.4.3.0_M_NoSE 结构目录如下: 1. 添加驱动文件 高通平台需使 ...

  5. shell重定向介绍及使用

    我们在写脚本或用脚本时,往往会发现 > /dev/null 2>&1 这类的命令.之前都是简单的了解一下,并没有深度消化,直到自己写脚本时,不认真写成了2>&1 &g ...

  6. stored information about method csdn

    Eclipse编译时保留方法的形参 Window -> Preferences -> Java -> Compiler. 选中Store information about meth ...

  7. 复制 cmd 窗口文本三步曲:

    1:右键菜单点"标记": 2:按住左键选文字: 3:选完右键点一下!  (关键一步,只需点一下就好!!) so 待选文字就跑到剪切板上了

  8. ELK-logstash-6.3.2-常用配置

    1. input-file收集日志信息 [yun@mini04 config]$ pwd /app/logstash/config [yun@mini04 config]$ cat file.conf ...

  9. NGINX Load Balancing – TCP and UDP Load Balancer

    This chapter describes how to use NGINX Plus and open source NGINX to proxy and load balance TCP and ...

  10. C. Edgy Trees Codeforces Round #548 (Div. 2) 并查集求连通块

    C. Edgy Trees time limit per test 2 seconds memory limit per test 256 megabytes input standard input ...