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. Spark(四十八):Spark MetricsSystem信息收集过程分析

    MetricsSystem信息收集过程 参考: <Apache Spark源码走读之21 -- WEB UI和Metrics初始化及数据更新过程分析> <Spark Metrics配 ...

  2. 编程基础-c语言中指针、sizeof用法总结

    1.指针 学习 C 语言的指针既简单又有趣.通过指针,可以简化一些 C 编程任务的执行,还有一些任务,如动态内存分配,没有指针是无法执行的.所以,想要成为一名优秀的 C 程序员,学习指针是很有必要的. ...

  3. https://pingcap.com/blog-cn/flame-graph/

    https://pingcap.com/blog-cn/flame-graph/ 因为 TiKV 是自己内部使用了 jemalloc,并没有用系统的 malloc,所以我们不能直接用 perf 来探查 ...

  4. QEMU支持的网络模式

    网络是现代计算机系统不可或缺的一部分,QEMU也对虚拟机提供丰富的网络支持.qemu-kvm中主要给客户机提供了如下4种不同模式的网络. (1)基于网桥(Bridge)的虚拟网卡 (2)基于NAT(N ...

  5. MWC飞控增加声纳定高的方法(转)

    源: MWC飞控增加声纳定高的方法

  6. WPF窗体自适应分辨率

    使用WPF创建一个窗体(Window)时,如果设置了固定的高度(Height)和宽度(Width),一旦用户的电脑分辨率过低,就会使得窗体及其中的内容无法完整地显示出来.要解决这个这个问题,有以下几个 ...

  7. svn服务端搭建

    本文介绍的是SVN的服务器端的搭建. 一.SVN服务器安装 1.     首先来下载和搭建SVN服务器,下载地址如下: http://subversion.apache.org/packages.ht ...

  8. Flutter中的Container和Text组件的常用属性

    效果图: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends St ...

  9. winform使用委托和事件在窗体之间传值

    定义委托和事件,并且触发这个事件 //定义委托 public delegate void ShowOutStockDelegate(List<OutStockResultDto> outS ...

  10. ES6深入浅出-9 Promise-1.回调与回调地狱

    promise 回调 把fun的调用写在另外一个函数里 fun()的调用在fn2这个函数里面.也是调用了函数.这种函数的调用形式叫做回调. A打电话给C找B.但是B不在,C说等B在的时候让B给A回电话 ...