• AGC006 C Rabbit Exercise——思路(置换)


    题目:https://agc006.contest.atcoder.jp/tasks/agc006_c

    选了 i 位置后 x[ i ] = x[ i-1 ] + x[ i+1 ] - x[ i ] 。

    从差分序列来看,选 i 位置后就是 swap( a[ i ] , a[ i+1 ] ) 。

    一组之后就是一个置换。找一下每个位置所在的环就行了。

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #define ll long long
    using namespace std;
    const int N=1e5+5;
    int n,a[N],b[N],c[N],tot,sta[N<<1],lcm; ll k;
    bool vis[N];
    int rdn()
    {
      int ret=0;bool fx=1;char ch=getchar();
      while(ch>'9'||ch<'0'){if(ch=='-')fx=0;ch=getchar();}
      while(ch>='0'&&ch<='9') ret=ret*10+ch-'0',ch=getchar();
      return fx?ret:-ret;
    }
    int gcd(int a,int b){return b?gcd(b,a%b):a;}
    void dfs(int cr)
    {
      sta[++tot]=cr;vis[cr]=1;
      if(!vis[b[cr]])dfs(b[cr]);
    }
    int main()
    {
      n=rdn();
      for(int i=1;i<=n;i++)a[i]=rdn();
      for(int i=n;i;i--)a[i]-=a[i-1];
      for(int i=1;i<=n;i++)b[i]=i;
      int m;m=rdn(); scanf("%lld",&k);
      for(int i=1,d;i<=m;i++)
        {
          d=rdn(); swap(b[d],b[d+1]);
        }
      lcm=1;
      for(int i=1;i<=n;i++)
        if(!vis[i])
          {
        tot=0; dfs(i);
        for(int j=tot+1;j<=tot<<1;j++)
          sta[j]=sta[j-tot];
        int d=k%tot;
        for(int j=1;j<=tot;j++)
          c[sta[j]]=a[sta[j+d]];
          }
      ll lj=c[1];
      for(int i=1;i<=n;i++,lj+=c[i])
        printf("%lld
    ",lj);
      return 0;
    }
  • 相关阅读:
    关于document.body.scrollTop用法
    set回顾
    用户登录与注册
    编写通讯录2
    利用字典的特性编写一个通讯录
    shelve模块
    shutil模块
    列表的拓展
    随机生成验证码2
    递归与欧几里得算法结合求最大公约数
  • 原文地址:https://www.cnblogs.com/Narh/p/10057474.html
Copyright © 2020-2023  润新知