Codeforces 623B Array GCD
最后的序列里肯定有a[1], a[1]-1, a[1]+1, a[n], a[n]-1, a[n]+1中的一个,枚举质因子, dp去check
- #include<bits/stdc++.h>
- #define LL long long
- #define fi first
- #define se second
- #define mk make_pair
- #define PLL pair<LL, LL>
- #define PLI pair<LL, int>
- #define PII pair<int, int>
- #define SZ(x) ((int)x.size())
- #define ull unsigned long long
- using namespace std;
- const int N = 1e6 + ;
- const int inf = 0x3f3f3f3f;
- const LL INF = 0x3f3f3f3f3f3f3f3f;
- const int mod = 1e9 + ;
- const double eps = 1e-;
- LL n, a, b, tot, ans = INF;
- LL c[N], fac[], dp[N][];
- void solve(int x) {
- for(int i = ; i * i < x; i++) {
- if(x % i) continue;
- fac[tot++] = i;
- while(x % i == ) x /= i;
- }
- if(x > ) fac[tot++] = x;
- sort(fac, fac + tot);
- tot = unique(fac, fac + tot) - fac;
- }
- void calc(int fac) {
- memset(dp, INF, sizeof(dp));
- dp[][] = ;
- for(int i = , r1, r2, r3; i < n; i++) {
- r1 = (c[i + ] - ) % fac;
- r2 = r1 + ; if(r2 >= fac) r2 -= fac;
- r3 = r2 + ; if(r3 >= fac) r3 -= fac;
- if(dp[i][] < INF) {
- dp[i + ][] = min(dp[i + ][], dp[i][] + a);
- if(!r2) dp[i + ][] = min(dp[i + ][], dp[i][]);
- else if(!r1 || !r3) dp[i + ][] = min(dp[i + ][], dp[i][] + b);
- }
- if(dp[i][] < INF) {
- dp[i + ][] = min(dp[i + ][], dp[i][] + a);
- if(!r2) dp[i + ][] = min(dp[i + ][], dp[i][]);
- else if(!r1 || !r3) dp[i + ][] = min(dp[i + ][], dp[i][] + b);
- }
- if(dp[i][] < INF) {
- if(!r2) dp[i + ][] = min(dp[i + ][], dp[i][]);
- else if(!r1 || !r3) dp[i + ][] = min(dp[i + ][], dp[i][] + b);
- }
- }
- for(int i = ; i < ; i++)
- ans = min(ans, dp[n][i]);
- }
- int main() {
- scanf("%lld%lld%lld", &n, &a, &b);
- for(int i = ; i <= n; i++) scanf("%lld", &c[i]);
- for(int i = -; i <= ; i++) solve(c[] + i);
- for(int i = -; i <= ; i++) solve(c[n] + i);
- for(int i = ; i < tot; i++) calc(fac[i]);
- printf("%lld\n", ans);
- return ;
- }
- /*
- */
Codeforces 623B Array GCD的更多相关文章
- 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 ...
- 【CodeForces 624D/623B】Array GCD
题 You are given array ai of length n. You may consecutively apply two operations to this array: remo ...
- 【CodeForces 624D】Array GCD
题 You are given array ai of length n. You may consecutively apply two operations to this array: remo ...
- Array GCD CodeForces - 624D (dp,gcd)
大意: 给定序列, 给定常数a,b, 两种操作, (1)任选一个长为$t$的子区间删除(不能全部删除), 花费t*a. (2)任选$t$个元素+1/-1, 花费t*b. 求使整个序列gcd>1的 ...
- codeforces 803C Maximal GCD(GCD数学)
Maximal GCD 题目链接:http://codeforces.com/contest/803/problem/C 题目大意: 给你n,k(1<=n,k<=1e10). 要你输出k个 ...
- Codeforces 797E - Array Queries
E. Array Queries 题目链接:http://codeforces.com/problemset/problem/797/E time limit per test 2 seconds m ...
- Codeforces 803C. Maximal GCD 二分
C. Maximal GCD time limit per test: 1 second memory limit per test: 256 megabytes input: standard in ...
- Codeforces 338 D. GCD Table
http://codeforces.com/problemset/problem/338/D 题意: 有一张n*m的表格,其中第i行第j列的数为gcd(i,j) 给出k个数 问在这张表格中是否 有某一 ...
- CodeForces 57C Array 组合计数+逆元
题目链接: http://codeforces.com/problemset/problem/57/C 题意: 给你一个数n,表示有n个数的序列,每个数范围为[1,n],叫你求所有非降和非升序列的个数 ...
随机推荐
- 【刷题】BZOJ 3522 [Poi2014]Hotel
Description 有一个树形结构的宾馆,n个房间,n-1条无向边,每条边的长度相同,任意两个房间可以相互到达.吉丽要给他的三个妹子各开(一个)房(间).三个妹子住的房间要互不相同(否则要打起来了 ...
- mysql 分组取每个组的前几名的问题
select *from hotel_addition_orders awhere (select count(*) from hotel_addition_orders where hotel_or ...
- BZOJ 4540 [Hnoi2016]序列 | 莫队 详细题解
传送门 BZOJ 4540 题解 --怎么说呢--本来想写线段树+矩阵乘法的-- --但是嘛--yali的机房太热了--困--写不出来-- 于是弃疗,写起了莫队.(但是我连莫队都想不出来!) 首先用单 ...
- 【树状数组套主席树】带修改区间K大数
P2617 Dynamic Rankings 题目描述给定一个含有n个数的序列a[1],a[2],a[3]……a[n],程序必须回答这样的询问:对于给定的i,j,k,在a[i],a[i+1],a[i+ ...
- 51nod 1667 概率好题
Description: 甲乙进行比赛. 他们各有k1,k2个集合[Li,Ri] 每次随机从他们拥有的每个集合中都取出一个数 S1=sigma甲取出的数,S2同理 若S1>S2甲胜 若S1=S2 ...
- c读入实型
读入: 如果读入的数为整型,然后转为实型,则%lf 否则%f也可以 读出: %f,这样在codeblocks才能看到正确的结果
- jq禁用html标签
原文:http://www.jb51.net/article/105154.htm 移除或禁用html元素的点击事件可以通过css实现也可以通过js或jQuery实现. 一.CSS方法 .disabl ...
- gdb初步窥探
本文是通过学习左耳朵皓帝的文章,详见:http://blog.csdn.net/haoel 1.使用gdb gdb主要是用来调试c和c++程序,首先在编译前我们先把调试信息加到可执行程序当中,使用参数 ...
- java学习第05天(数组常见操作、数组中的数组)
(4)数组常见操作 a.遍历取值 class ArrayDemo3 { public static void main(String[] args) { //System.out.println(&q ...
- 第6月第6天 opengles 三角形
1. http://blog.csdn.net/u010963658/article/details/52691578 2.多张图 https://www.oschina.net/question/2 ...