Codeforces Round #421 (Div. 1) (BC)
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)的更多相关文章
- 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= ...
- Codeforces Round #500 (Div. 2) BC
CodeForces 1013B And CodeForces 1013C Photo of The Sky B 可以发现只有一次与操作是有意义的,所以答案只有-1,0,1,2四种情况 #inclu ...
- 【Codeforces Round #421 (Div. 2) B】Mister B and Angle in Polygon
[题目链接]:http://codeforces.com/contest/820/problem/B [题意] 给你一个正n边形; 然后让你在这正n边行中选3个点,组成一个角; 找出角的大小和所给的角 ...
- 【Codeforces Round #421 (Div. 2) A】Mister B and Book Reading
[题目链接]:http://codeforces.com/contest/820/problem/A [题意] 每天看书能看v页; 且这个v每天能增加a; 但是v有上限v1; 然后每天还必须往回看t页 ...
- Codeforces Round #421 (Div. 2) - B
题目链接:http://codeforces.com/contest/820/problem/B 题意:给定一个正n边形,然后让你选择3个不同的顶点,使得这3个顶点形成的角度尽可能的接近a. 思路:首 ...
- Codeforces Round #421 (Div. 2) - A
题目链接:http://codeforces.com/contest/820/problem/A 题意:一个人在看一本书,书一共C页,这个人每天看v0页,但是他又开始加速看这本书,每天都比前一天多看a ...
- Codeforces Round #421 (Div. 2)
A: 题意:给你一本书共c页,第一天看v0页,第二天看v0+a,第二天看v0+2a以此类推,每天最多看v1页,但是后一天要重复看前一天的后l页. 代码: #include<stdio.h> ...
- 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)的左 ...
- 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 ...
随机推荐
- SQL Server 静默安装
SQL Server 安装时,需要在各个安装窗口进行选择和设置,若需要在多台服务器安装相同的数据库,静默安装是比较省事的. 当安装 SQL Server 到最后一步,会有一个安装配置文件 Confi ...
- android x86 安装
1.下载页面 http://www.android-x86.org 下载了: android-x86-8.1-r2.iso 用Win32DiskImager制作usb启动盘. 参考: https:// ...
- Java_jdbc 基础笔记之四 数据库连接 (通用更新方法)
/** * 写一个通用的更新方法 包括 INSERT. DELETE.UPDATE * 使用工具类 * @param sql */ public void update(String sql){ Co ...
- linux中截取字段与#、$区别
1.Linux shell 截取字符变量的前8位 实现方法有如下几种: expr substr “$a” 1 8 echo $a|awk ‘{print substr(,1,8)}’ echo $a| ...
- Vue非父子组件传值
<template> <div id="app"> <v-home></v-home> <br> <hr> ...
- ES6深入浅出-10 ES6新增的数据类型-2.Set与数组去重
一种新的数据类型,它是对象的一种,Set,很像数组,又不是数组. Set 类型 https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Refe ...
- HTTP1.1新增了五种请求方法:OPTIONS、PUT、PATCH、DELETE、TRACE 、 CONNECT
200 (成功) 服务器已成功处理了请求. 通常,这表示服务器提供了请求的网页. 201 (已创建) 请求成功并且服务器创建了新的资源. 202 (已接受) 服务器已接受请求,但尚未处理. 203 ( ...
- [ kvm ] 学习笔记 4:KVM 高级功能详解
1. 半虚拟化驱动 1.1 virtio 概述 KVM 是必须使用硬件虚拟化辅助技术(如 Intel VT-x .AMD-V)的 Hypervisor,在CPU 运行效率方面有硬件支持,其效率是比较高 ...
- 静态站点生成器-md-hexo
推荐指数:
- 【err】开启Persistence-M模式-Check failed: err == CUBLAS_STATUS_SUCCESS (1 vs. 0) : Create cublas handle failed
前言 安装好CUDA.CUDNN.NVIDIA driver之后,使用mxnet框架的时候出现该错误,本文记录该问题的解决方法. 环境 ubuntu 16.04 MxNet Cuda9.0 Nvidi ...