E - Necklace

Ivan wants to make a necklace as a present to his beloved girl. A necklace is a cyclic sequence of beads of different colors. Ivan says that necklace is beautifulrelative to the cut point between two adjacent beads, if the chain of beads remaining after this cut is a palindrome (reads the same forward and backward).

Ivan has beads of n colors. He wants to make a necklace, such that it's beautiful relative to as many cuts as possible. He certainly wants to use all the beads. Help him to make the most beautiful necklace.

Input

The first line of the input contains a single number n (1 ≤ n ≤ 26) — the number of colors of beads. The second line contains after n positive integers ai   — the quantity of beads of i-th color. It is guaranteed that the sum of ai is at least 2 and does not exceed 100 000.

Output

In the first line print a single number — the maximum number of beautiful cuts that a necklace composed from given beads may have. In the second line print any example of such necklace.

Each color of the beads should be represented by the corresponding lowercase English letter (starting with a). As the necklace is cyclic, print it starting from any point.

Example

Input
34 2 1
Output
1abacaba
Input
14
Output
4aaaa
Input
21 1
Output
0ab

Note

In the first sample a necklace can have at most one beautiful cut. The example of such a necklace is shown on the picture.

In the second sample there is only one way to compose a necklace.

题目的大意就是,给出一个整数n,再给出n个整数a[i],分别表示颜色为i的珠子有a[i]个。求构造一串项链,使项链从某处剖开后对称,并使能剖开处的位置最多。输出时,先输出一个整数表示可剖开处的个数,然后输出

项链。相应的数字用对应的字母表示,如第一种颜色对a,第二种颜色对b...。

那么,由于我们需要尽可能多的"剖开处",这就意味着剖开后再拼接,字符串的构造与原来一样,这种情况要尽可能的多.

继续探究(下图):

在上图中,a,b的接口就是剖开处,显然a必定是b的前缀,也是b的后缀,至于中间部分,那还是可以继续分下去,然后又进行剖割......

我们可以假设一下,a是最小的剖割单位(即子串a无法继续剖割),那由于字符串是我们来构造的,那么一个贪心的想法,子串b中部必定有若干个子串a(这样,这个字符串才满足要求)

那么,我们就可以将目标串划分为若干个子串,这些子串是回文的,且不能再划分.

那到底有几个子串?我们要分类讨论.

首先,有可能根本构不成这样的目标串.什么时候?a[i]中存在两个及以上的奇数.这样的话,在每一个相同的子串中,你无法确定,正中间放谁.

另外,如果只有1个奇数,那么这个字符一定在每一个子串的中间.那究竟最多可以划分多少个子串?gcd(a[i])个.(这个应该不用证明了吧)

而且能保证,每个子串中,某个字符出现1次的有且只有1个.(这个也不用证了吧,水一水就好了)

然后回文输出就行.

如果根本没有奇数,那怎么办?

最多能划分成gcd(a[i])/2个子串(注意并不是gcd(a[i])).为什么?我们用反证法.假设能分成gcd(a[i])个子串,那么每个子串里面包含出现奇数次的字符的个数有可能不止一个,如果真的不止一个,那就不满足要求了.

然后还是分布在两边回文输出.

 #include<cstdio>
 #include<cstring>
 #include<algorithm>
 #include<iostream>
 using namespace std;
 ],odd;
 ?x:gcd(y,x%y);}
 int main(){
     cin>>n,odd=;
     ; i<=n; i++) cin>>a[i],odd+=a[i]%;
     ){
         puts(");
         ; i<=n; i++)
             ; j<=a[i]; j++) printf(+(int)'a'));
         ;
     }
     ];
     ; i<=n; i++) G=gcd(G,a[i]);
     printf("%d\n",G);
     ;
     ; i<=n; i++) a[i]/=G,len+=a[i];
     ){
         ; t<=G; t++){
             ; i<=n; i++) ==)
                 ; j<=a[i]/; j++) printf(+(int)'a'));
             ; i<=n; i++) ==)
                 ; j<=a[i]; j++) printf(+(int)'a'));
             ; i--) ==)
                 ; j<=a[i]/; j++) printf(+(int)'a'));
         }
     }else{
         ; t<=G/; t++){
             ; i<=n; i++)
                 ; j<=a[i]; j++) printf(+(int)'a'));
             ; i--)
                 ; j<=a[i]; j++) printf(+(int)'a'));
         }
     }
     ;
 }

[CodeForces - 614E] E - Necklace的更多相关文章

  1. Codeforces 614E - Necklace

    614E - Necklace 思路:如果奇数超过1个,那么答案是0:否则,所有数的gcd就是答案. 构造方案:每个数都除以gcd,如果奇数个仍旧不超过1个,找奇数个那个在中间(如果没有奇数默认a), ...

  2. Codeforces Round #339 (Div. 1) C. Necklace 构造题

    C. Necklace 题目连接: http://www.codeforces.com/contest/613/problem/C Description Ivan wants to make a n ...

  3. Codeforces 526D - Om Nom and Necklace 【KMP】

    ZeptoLab Code Rush 2015 D. Om Nom and Necklace [题意] 给出一个字符串s,判断其各个前缀是否是 ABABA…ABA的形式(A和B都可以为空,且A有Q+1 ...

  4. Codeforces - ZeptoLab Code Rush 2015 - D. Om Nom and Necklace:字符串

    D. Om Nom and Necklace time limit per test 1 second memory limit per test 256 megabytes input standa ...

  5. 【Codeforces 526D】Om Nom and Necklace

    Codeforces 526 D 题意:给一个字符串,求每个前缀是否能表示成\(A+B+A+B+\dots+A\)(\(k\)个\(A+B\))的形式. 思路1:求出所有前缀的哈希值,以便求每个子串的 ...

  6. Codeforces 526D Om Nom and Necklace (KMP)

    http://codeforces.com/problemset/problem/526/D 题意 给定一个串 T,对它的每一个前缀能否写成 A+B+A+B+...+B+A+B+A+B+...+B+A ...

  7. Codeforces 526.D Om Nom and Necklace

    D. Om Nom and Necklace time limit per test 1 second memory limit per test 256 megabytes input standa ...

  8. CodeForces 526D Om Nom and Necklace

    洛谷题目页面传送门 & CodeForces题目页面传送门 给定字符串\(a\),求它的每一个前缀,是否能被表示成\(m+1\)个字符串\(A\)和\(m\)个字符串\(B\)交错相连的形式, ...

  9. Codeforces 1361C - Johnny and Megan's Necklace(欧拉回路)

    Codeforces 题目传送门 & 洛谷题目传送门 u1s1 感觉这个题作为 D1C 还是蛮合适的-- 首先不难发现答案不超过 \(20\),所以可以直接暴力枚举答案并 check 答案是否 ...

随机推荐

  1. Vs Code搭建 TypeScript 开发环境

    一.npm install -g typescript 全局安装TypeScript   二.使用Vs Code打开已创建的文件夹,使用快捷键Ctrl+~启动终端输入命令 tsc --init 创建t ...

  2. 4、Python文件对象及os、os.path和pickle模块(0530)

    文件系统和文件 1.文件系统是OS用于明确磁盘或分区上的文件的方法和数据结构---即在磁盘上组织文件的方法: 文件系统模块:os 2.计算机文件(称文件.电脑档案.档案),是存储在某种长期储存设备或临 ...

  3. Maven Web项目解决跨域问题

    跨域问题目前笔者所用到的方案大致有三种:jsonp,SpringMVC 4以上注解方式和cros三方过滤器. Jsonp JSONP(JSON with Padding)是一个非官方的协议,它允许在服 ...

  4. JQ遇到$(‘.xxx’).attr(‘display’)一直返回undefined

    jq attr && jq css 1.1 attr() 方法设置或返回被选元素的属性值 我们就题目遇到的问题做一个测试 //html <div class="div1 ...

  5. CSS3实现鼠标移动到图片上图片变大(缓慢变大,有过渡效果,放大的过程是有动画过渡的,这个过渡的时间可以自定义)

    转载自:http://blog.csdn.net/u014175572/article/details/51535768 CSS3的transform:scale()可以实现按比例放大或者缩小功能. ...

  6. 切片对象的demo

    a = slice(, ) s = 'HelloWorld' print(a.indices(len(s))) for i in range(*a.indices(len(s))): print(s[ ...

  7. AQS是什么?

    AQS介绍 AQS,即AbstractQueuedSynchronizer, 队列同步器,它是Java并发用来构建锁和其他同步组件的基础框架.来看下同步组件对AQS的使用: AQS是一个抽象类,主是是 ...

  8. npm ERR! missing script: dev 报错解决

    npm run dev 报错:missing script:dev 今天在运行Vue项目时,在运行npm  run dev时报错如下图: 打开package.js文件夹,发现文件夹里的scripts有 ...

  9. npm i和npm install的区别

    最近人用npm i来直接安装模块,但是有会报错,用npm install就不会报错,刚开始百思不得其解,它俩明明是同一个东西 后来查npm的帮助指令发现还是没区别,npm i仅仅是npm instal ...

  10. anaconda3 安装opencv3.4.2 cuda9.2 mint19(ubuntu 18.04)

    从opencv1的时代,编译这玩意就不是太轻松.之前都是在win下.2.x时代,开始用cmake GUI,选vs版本,x86 x64 各种依赖库选项,debug release,... 现在3.4了, ...