Codeforces Round #421 (Div. 1) (BC)

1. 819B Mister B and PR Shifts

Effect: Given arranged $ p $, $ p $ alignment feature defined value $ \ sum | p_i-i | $, any bit may be rotated right, find the minimum value and a corresponding number of mobile features.

The right to maintain the process of increasing the number and the number can be reduced. 

#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+7, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}
//head



const int N = 1e6+50;
int n, a[N];
int dl[N], dr[N];

int main() {
    scanf("%d",&n);
    REP(i,1,n) scanf("%d",a+i);
    ll ret = 0, ans = 0;
    int L = 0, R = 0;
    REP(i,1,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]!=1) {
                --dl[n-i+a[i]];
                ++dr[n-i+a[i]];
            }
        } 
    }
    Ans = right;
    int pos = 0 ; 
    REP (i, 1 , n- 1 ) { 
        right + = R L; 
        R + = dr [i]; 
        L + = dl [i];
        IF (a [n-i + 1 ]! = 1 ) --R, ++ L; 
        right - abs = (a [n-i + 1 ] -N- 1 ); 
        entitled + = abs (a [n-i + 1 ] - 1 );
        if (right <ANS) heading = i, ans = right; 
    }
    printf("%lld %d\n", ans, pos);
}
View Code

 

 

2. 819C Mister B and Beacons on Field

Effect: Given two planar points $ A (m, 0), B (0, n) $

  • $ A $ moved origin seeking process, the number of time, the presence of such a point $ C $ $ S $ ABC area
  • Origin $ A $, $ B $ process moves to the origin, the number of time, the presence of such a point $ C $ $ S $ ABC area

 

For the first question, assuming coordinates $ C $ $ (x, y) $, $ A $ returns when coordinates $ (t, 0) $

Then there is $ xn + ty = 2S + tn, 0 \ le t \ le m $

It is equivalent to finding $ [0, m] $ in the number of satisfied $ t $ $ gcd (n, t) | 2S $

For the second question, it is assumed that the coordinate returns $ B $ $ (0, t) $

Then there is $ xt = 2S, 1 \ le t \ le m $

It is equivalent to finding $ [1, n] $ in how many $ t $ satisfies $ 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+7, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}
//head



const int N = 1e6+50;
int gpf[N];
vector<pii> B,C,S;
ll ans,n,m,s;

void solve(vector<pii> &A, int x) {
    while (x!=1) {
        int p = gpf[x], cnt = 0;
        while (x%p==0) 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(2,1));
    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+1,num,z);
    REP(i,1,C[d].y+1) num/=C[d].x;
    dfs(d+1,num,-z);
}
void dfs2(int d, ll num) {
    if (num>n) return;
    if (d==S.size()) return ++ans,void();
    dfs2(d+1,num);
    REP(i,1,S[d].y) num*=S[d].x,dfs2(d+1,num);
}
void work() {
    init();
    int sz = S.size(), now = 0;
    REP(i,0,sz-1) {
        while (now<B.size()&&B[now].x<S[i].x) C.pb(pii(B[now++].x,0));
        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,0));
    ans = 0;
    dfs(0,m,1),dfs2(0,1);
    printf("%lld\n", ans);
}

int main() {
    gpf[1] = 1;
    REP(i,1,N-1) if (!gpf[i]) {
        for(int j=i;j<N;j+=i) gpf[j]=i;
    }
    int t;
    scanf("%d", &t);
    while (t--) work();
}
View Code

 

Guess you like

Origin www.cnblogs.com/uid001/p/11614218.html