Array GCD

最后的序列里肯定有a[1], a[1]-1, a[1]+1, a[n], a[n]-1, a[n]+1中的一个,枚举质因子, dp去check

  1. #include<bits/stdc++.h>
  2. #define LL long long
  3. #define fi first
  4. #define se second
  5. #define mk make_pair
  6. #define PLL pair<LL, LL>
  7. #define PLI pair<LL, int>
  8. #define PII pair<int, int>
  9. #define SZ(x) ((int)x.size())
  10. #define ull unsigned long long
  11. using namespace std;
  12.  
  13. const int N = 1e6 + ;
  14. const int inf = 0x3f3f3f3f;
  15. const LL INF = 0x3f3f3f3f3f3f3f3f;
  16. const int mod = 1e9 + ;
  17. const double eps = 1e-;
  18.  
  19. LL n, a, b, tot, ans = INF;
  20. LL c[N], fac[], dp[N][];
  21.  
  22. void solve(int x) {
  23. for(int i = ; i * i < x; i++) {
  24. if(x % i) continue;
  25. fac[tot++] = i;
  26. while(x % i == ) x /= i;
  27. }
  28. if(x > ) fac[tot++] = x;
  29. sort(fac, fac + tot);
  30. tot = unique(fac, fac + tot) - fac;
  31. }
  32.  
  33. void calc(int fac) {
  34. memset(dp, INF, sizeof(dp));
  35. dp[][] = ;
  36. for(int i = , r1, r2, r3; i < n; i++) {
  37. r1 = (c[i + ] - ) % fac;
  38. r2 = r1 + ; if(r2 >= fac) r2 -= fac;
  39. r3 = r2 + ; if(r3 >= fac) r3 -= fac;
  40. if(dp[i][] < INF) {
  41. dp[i + ][] = min(dp[i + ][], dp[i][] + a);
  42. if(!r2) dp[i + ][] = min(dp[i + ][], dp[i][]);
  43. else if(!r1 || !r3) dp[i + ][] = min(dp[i + ][], dp[i][] + b);
  44. }
  45. if(dp[i][] < INF) {
  46. dp[i + ][] = min(dp[i + ][], dp[i][] + a);
  47. if(!r2) dp[i + ][] = min(dp[i + ][], dp[i][]);
  48. else if(!r1 || !r3) dp[i + ][] = min(dp[i + ][], dp[i][] + b);
  49. }
  50. if(dp[i][] < INF) {
  51. if(!r2) dp[i + ][] = min(dp[i + ][], dp[i][]);
  52. else if(!r1 || !r3) dp[i + ][] = min(dp[i + ][], dp[i][] + b);
  53. }
  54. }
  55. for(int i = ; i < ; i++)
  56. ans = min(ans, dp[n][i]);
  57. }
  58.  
  59. int main() {
  60. scanf("%lld%lld%lld", &n, &a, &b);
  61. for(int i = ; i <= n; i++) scanf("%lld", &c[i]);
  62. for(int i = -; i <= ; i++) solve(c[] + i);
  63. for(int i = -; i <= ; i++) solve(c[n] + i);
  64. for(int i = ; i < tot; i++) calc(fac[i]);
  65. printf("%lld\n", ans);
  66. return ;
  67. }
  68.  
  69. /*
  70. */

Codeforces 623B Array GCD的更多相关文章

  1. AIM Tech Round (Div. 2) D. Array GCD dp

    D. Array GCD 题目连接: http://codeforces.com/contest/624/problem/D Description You are given array ai of ...

  2. 【CodeForces 624D/623B】Array GCD

    题 You are given array ai of length n. You may consecutively apply two operations to this array: remo ...

  3. 【CodeForces 624D】Array GCD

    题 You are given array ai of length n. You may consecutively apply two operations to this array: remo ...

  4. Array GCD CodeForces - 624D (dp,gcd)

    大意: 给定序列, 给定常数a,b, 两种操作, (1)任选一个长为$t$的子区间删除(不能全部删除), 花费t*a. (2)任选$t$个元素+1/-1, 花费t*b. 求使整个序列gcd>1的 ...

  5. codeforces 803C Maximal GCD(GCD数学)

    Maximal GCD 题目链接:http://codeforces.com/contest/803/problem/C 题目大意: 给你n,k(1<=n,k<=1e10). 要你输出k个 ...

  6. Codeforces 797E - Array Queries

    E. Array Queries 题目链接:http://codeforces.com/problemset/problem/797/E time limit per test 2 seconds m ...

  7. Codeforces 803C. Maximal GCD 二分

    C. Maximal GCD time limit per test: 1 second memory limit per test: 256 megabytes input: standard in ...

  8. Codeforces 338 D. GCD Table

    http://codeforces.com/problemset/problem/338/D 题意: 有一张n*m的表格,其中第i行第j列的数为gcd(i,j) 给出k个数 问在这张表格中是否 有某一 ...

  9. CodeForces 57C Array 组合计数+逆元

    题目链接: http://codeforces.com/problemset/problem/57/C 题意: 给你一个数n,表示有n个数的序列,每个数范围为[1,n],叫你求所有非降和非升序列的个数 ...

随机推荐

  1. 【刷题】BZOJ 3522 [Poi2014]Hotel

    Description 有一个树形结构的宾馆,n个房间,n-1条无向边,每条边的长度相同,任意两个房间可以相互到达.吉丽要给他的三个妹子各开(一个)房(间).三个妹子住的房间要互不相同(否则要打起来了 ...

  2. mysql 分组取每个组的前几名的问题

    select *from hotel_addition_orders awhere (select count(*) from hotel_addition_orders where hotel_or ...

  3. BZOJ 4540 [Hnoi2016]序列 | 莫队 详细题解

    传送门 BZOJ 4540 题解 --怎么说呢--本来想写线段树+矩阵乘法的-- --但是嘛--yali的机房太热了--困--写不出来-- 于是弃疗,写起了莫队.(但是我连莫队都想不出来!) 首先用单 ...

  4. 【树状数组套主席树】带修改区间K大数

    P2617 Dynamic Rankings 题目描述给定一个含有n个数的序列a[1],a[2],a[3]……a[n],程序必须回答这样的询问:对于给定的i,j,k,在a[i],a[i+1],a[i+ ...

  5. 51nod 1667 概率好题

    Description: 甲乙进行比赛. 他们各有k1,k2个集合[Li,Ri] 每次随机从他们拥有的每个集合中都取出一个数 S1=sigma甲取出的数,S2同理 若S1>S2甲胜 若S1=S2 ...

  6. c读入实型

    读入: 如果读入的数为整型,然后转为实型,则%lf 否则%f也可以 读出: %f,这样在codeblocks才能看到正确的结果

  7. jq禁用html标签

    原文:http://www.jb51.net/article/105154.htm 移除或禁用html元素的点击事件可以通过css实现也可以通过js或jQuery实现. 一.CSS方法 .disabl ...

  8. gdb初步窥探

    本文是通过学习左耳朵皓帝的文章,详见:http://blog.csdn.net/haoel 1.使用gdb gdb主要是用来调试c和c++程序,首先在编译前我们先把调试信息加到可执行程序当中,使用参数 ...

  9. java学习第05天(数组常见操作、数组中的数组)

    (4)数组常见操作 a.遍历取值 class ArrayDemo3 { public static void main(String[] args) { //System.out.println(&q ...

  10. 第6月第6天 opengles 三角形

    1. http://blog.csdn.net/u010963658/article/details/52691578 2.多张图 https://www.oschina.net/question/2 ...