1. 819B Mister B and PR Shifts

大意: 给定排列$p$, 定义排列$p$的特征值为$\sum |p_i-i|$, 可以循环右移任意位, 求最小特征值和对应移动次数.

右移过程中维护增加的个数和减少的个数即可.

#include <iostream>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <cstring>
#include <bitset>
#include <functional>
#include <random>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<',';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=%P;for (a%=P;n;a=a*a%P,n>>=)if(n&)r=r*a%P;return r;}
ll inv(ll x){return x<=?:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=;char p=getchar();while(p<''||p>'')p=getchar();while(p>=''&&p<='')x=x*+p-'',p=getchar();return x;}
//head const int N = 1e6+;
int n, a[N];
int dl[N], dr[N]; int main() {
scanf("%d",&n);
REP(i,,n) scanf("%d",a+i);
ll ret = , ans = ;
int L = , R = ;
REP(i,,n) {
ret += abs(a[i]-i);
if (a[i]>i) {
++L;
--dl[a[i]-i];
++dr[a[i]-i];
}
else if (a[i]<=i) {
++R;
if (a[i]!=) {
--dl[n-i+a[i]];
++dr[n-i+a[i]];
}
}
}
ans = ret;
int pos = ;
REP(i,,n-) {
ret += R-L;
R += dr[i];
L += dl[i];
if (a[n-i+]!=) --R,++L;
ret -= abs(a[n-i+]-n-);
ret += abs(a[n-i+]-);
if (ret<ans) pos = i, ans = ret;
}
printf("%lld %d\n", ans, pos);
}

2. 819C Mister B and Beacons on Field

大意: 给定两个平面点$A(m,0),B(0,n)$

  • 求$A$移向原点过程中, 有多少个时刻, 存在一个点$C$使得ABC面积为$S$
  • $A$在原点, $B$移向原点过程中, 有多少个时刻, 存在一个点$C$使得ABC面积为$S$

对于第一问, 假设$C$坐标为$(x,y)$, $A$返回时坐标为$(t,0)$

那么有$xn+ty=2S+tn, 0\le t\le m$

就等价于求$[0,m]$中有多少个$t$满足$gcd(n,t)|2S$

对于第二问, 假设$B$返回时坐标为$(0,t)$

那么有$xt=2S, 1\le t\le m$

等价于求$[1,n]$中有多少个$t$满足$t|2S$

#include <iostream>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <cstring>
#include <bitset>
#include <functional>
#include <random>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<',';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=%P;for (a%=P;n;a=a*a%P,n>>=)if(n&)r=r*a%P;return r;}
ll inv(ll x){return x<=?:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=;char p=getchar();while(p<''||p>'')p=getchar();while(p>=''&&p<='')x=x*+p-'',p=getchar();return x;}
//head const int N = 1e6+;
int gpf[N];
vector<pii> B,C,S;
ll ans,n,m,s; void solve(vector<pii> &A, int x) {
while (x!=) {
int p = gpf[x], cnt = ;
while (x%p==) x/=p,++cnt;
A.pb(pii(p,cnt));
}
}
void repr(vector<pii> &A) {
sort(A.begin(),A.end());
vector<pii> ret;
for (auto &t:A) {
if (ret.empty()||t.x!=ret.back().x) ret.pb(t);
else ret.back().y += t.y;
}
A = ret;
}
void init() {
int n1,n2,n3,m1,m2,m3,s1,s2,s3;
scanf("%d%d%d%d%d%d%d%d%d",&n1,&n2,&n3,&m1,&m2,&m3,&s1,&s2,&s3);
B.clear(),C.clear(),S.clear();
n = (ll)n1*n2*n3, m = (ll)m1*m2*m3, s = (ll)s1*s2*s3;
solve(B,n1),solve(B,n2),solve(B,n3),repr(B);
S.pb(pii(,));
solve(S,s1),solve(S,s2),solve(S,s3),repr(S);
}
void dfs(int d, ll num, int z) {
if (!num) return;
if (d==C.size()) return ans+=num*z,void();
dfs(d+,num,z);
REP(i,,C[d].y+) num/=C[d].x;
dfs(d+,num,-z);
}
void dfs2(int d, ll num) {
if (num>n) return;
if (d==S.size()) return ++ans,void();
dfs2(d+,num);
REP(i,,S[d].y) num*=S[d].x,dfs2(d+,num);
}
void work() {
init();
int sz = S.size(), now = ;
REP(i,,sz-) {
while (now<B.size()&&B[now].x<S[i].x) C.pb(pii(B[now++].x,));
if (now<B.size()&&B[now].x==S[i].x) {
if (B[now].y>S[i].y) C.pb(S[i]);
++now;
}
}
while (now<B.size()) C.pb(pii(B[now++].x,));
ans = ;
dfs(,m,),dfs2(,);
printf("%lld\n", ans);
} int main() {
gpf[] = ;
REP(i,,N-) if (!gpf[i]) {
for(int j=i;j<N;j+=i) gpf[j]=i;
}
int t;
scanf("%d", &t);
while (t--) work();
}

Codeforces Round #421 (Div. 1) (BC)的更多相关文章

  1. Codeforces Round #421 (Div. 2) D. Mister B and PR Shifts

    Codeforces Round #421 (Div. 2) D. Mister B and PR Shifts 题意:给一个长度为\(n\)的排列,每次可以向右循环移位一次,计算\(\sum_{i= ...

  2. Codeforces Round #500 (Div. 2) BC

    CodeForces 1013B And CodeForces 1013C  Photo of The Sky B 可以发现只有一次与操作是有意义的,所以答案只有-1,0,1,2四种情况 #inclu ...

  3. 【Codeforces Round #421 (Div. 2) B】Mister B and Angle in Polygon

    [题目链接]:http://codeforces.com/contest/820/problem/B [题意] 给你一个正n边形; 然后让你在这正n边行中选3个点,组成一个角; 找出角的大小和所给的角 ...

  4. 【Codeforces Round #421 (Div. 2) A】Mister B and Book Reading

    [题目链接]:http://codeforces.com/contest/820/problem/A [题意] 每天看书能看v页; 且这个v每天能增加a; 但是v有上限v1; 然后每天还必须往回看t页 ...

  5. Codeforces Round #421 (Div. 2) - B

    题目链接:http://codeforces.com/contest/820/problem/B 题意:给定一个正n边形,然后让你选择3个不同的顶点,使得这3个顶点形成的角度尽可能的接近a. 思路:首 ...

  6. Codeforces Round #421 (Div. 2) - A

    题目链接:http://codeforces.com/contest/820/problem/A 题意:一个人在看一本书,书一共C页,这个人每天看v0页,但是他又开始加速看这本书,每天都比前一天多看a ...

  7. Codeforces Round #421 (Div. 2)

    A: 题意:给你一本书共c页,第一天看v0页,第二天看v0+a,第二天看v0+2a以此类推,每天最多看v1页,但是后一天要重复看前一天的后l页. 代码: #include<stdio.h> ...

  8. Codeforces Round #421 (Div. 2)D - Mister B and PR Shifts(模拟)

    传送门 题意 给出n个数,计算在进行n-1次右移中\(min\sum_{i=1}^nabs(p_i-i)\) 分析 我们设置cnt[p[i]-i]为一个数p[i]与它标准位置(如1的标准位置为1)的左 ...

  9. Codeforces Round #421 (Div. 2)B. Mister B and Angle in Polygon(模拟+精度控制)

    传送门 题意 给出正n多边形和一个数a,寻找与a最接近的角,输出角编号 分析 找出多边形上所有角,一一比对即可 trick 1.判断的时候注意精度,i.e.x-eps>0 2.double与do ...

随机推荐

  1. PyCharm 中写 Turtle代码没提示以及标黄问题

    PyCharm 中在使用Turtle(海龟)库绘图体系时,代码明明是正确可以运行的,但是没有提示 ,代码出现黄色标记以及红色波浪线 ,经验不足的人还以为自己的书写方法错误,毕竟出现了红色波浪线,效果如 ...

  2. HTMLPage测试js通过ajax调用

    HTMLPage测试js通过ajax调用接口 <!DOCTYPE html> <html lang="en" xmlns="http://www.w3. ...

  3. Jira 入门【转】

    JIRA是Atlassian公司出品的项目与事务跟踪工具,被广泛应用于缺陷跟踪.客户服务.需求收集.流程审批.任务跟踪.项目跟踪和敏捷管理等工作领域.它是一个集 项目计划.任务分配.需求管理.错误跟踪 ...

  4. PHP如何实现静态的链式调用

    Db::table('**')->where('***','***')->order('***')->find('**'); 想这种应该怎么实现 public function ta ...

  5. tomcat NIOEndpoint中的Acceptor实现

    EndPoint的组件就是属于连接器Connector里面的.它是一个通信的端点,就是负责对外实现TCP/IP协议.EndPoint是个接口,它的具体实现类就是AbstractEndpoint,而Ab ...

  6. Java之Object对象中的wait()和notifyAll()用法

    用一个例子来说明Object对象中的wait方法和notifyAll方法的使用. 首先定义一个消息类,用于封装数据,以供读写线程进行操作: /** * 消息 * * @author syj */ pu ...

  7. 圣诞节雪花效果,pc端

    <!doctype html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  8. IMDB-WIKI – 500k+ face images with age and gender labels论文学习

    DEX: Deep EXpectation of apparent age from a single image 这个论文我们使用深度学习解决了在静态人脸图像中面部年龄的估计.我们的卷积神经网络使用 ...

  9. SpringBoot学习笔记:单元测试

    SpringBoot学习笔记:单元测试 单元测试 单元测试(英语:Unit Testing)又称为模块测试,是针对程序模块(软件设计的最小单位)来进行正确性检验的测试工作.程序单元是应用的最小可测试部 ...

  10. linux和windows换行符的^M问题

    起源 在windows中写的脚本执行完全没问题,代码一模一样,切换到linux中执行报错.利用命令 “vi/vim -b 文件名”查看文件发现每行结尾多了“^M”这样的结尾. 根源 通过查询得知,其问 ...