zoukankan      html  css  js  c++  java
  • Codeforces #659 A. Common Prefixes

    题面

    he length of the longest common prefix of two strings s=s1s2…sn and t=t1t2…tm is defined as the maximum integer k (0≤k≤min(n,m)) such that s1s2…sk equals t1t2…tk.

    Koa the Koala initially has n+1 strings s1,s2,…,sn+1.

    For each i (1≤i≤n) she calculated ai — the length of the longest common prefix of si and si+1.

    Several days later Koa found these numbers, but she couldn't remember the strings.

    So Koa would like to find some strings s1,s2,…,sn+1 which would have generated numbers a1,a2,…,an. Can you help her?

    If there are many answers print any. We can show that answer always exists for the given constraints.

    Input
    Each test contains multiple test cases. The first line contains t (1≤t≤100) — the number of test cases. Description of the test cases follows.

    The first line of each test case contains a single integer n (1≤n≤100) — the number of elements in the list a.

    The second line of each test case contains n integers a1,a2,…,an (0≤ai≤50) — the elements of a.

    It is guaranteed that the sum of n over all test cases does not exceed 100.

    Output
    For each test case:

    Output n+1 lines. In the i-th line print string si (1≤|si|≤200), consisting of lowercase Latin letters. Length of the longest common prefix of strings si and si+1 has to be equal to ai.

    If there are many answers print any. We can show that answer always exists for the given constraints.

    Example
    inputCopy
    4
    4
    1 2 4 2
    2
    5 3
    3
    1 3 1
    3
    0 0 0
    outputCopy
    aeren
    ari
    arousal
    around
    ari
    monogon
    monogamy
    monthly
    kevinvu
    kuroni
    kurioni
    korone
    anton
    loves
    adhoc
    problems

    思路

    从小到大我们去添加或者删除元素十分麻烦,所以我们这里考虑直接给1的位置赋一个长串的a,然后根据题目给定的条件去调整后面一个字母就可以了。

    代码实现

    
    #include<cstdio>
    #include<iostream>
    #include<cstring>
    #include<cmath>
    using namespace std;
    int n;
    
    void solve () {
        string str(200,'a');
        cout<<str<<endl;
        for (int i=0;i<n;i++) {
           int op;
           cin>>op;
           str[op]=str[op]=='a'?'b':'a';
           cout<<str<<endl;
        }
    }
    
    int main ( ) {
    
       int t;
       cin>>t;
       while (t--) {
           cin>>n;
           solve ();
       }
    
        return 0;
    }
    
  • 相关阅读:
    【网易官方】极客战记(codecombat)攻略-森林-加农炮之舞forest-cannon-dancing
    【网易官方】极客战记(codecombat)攻略-森林-森林慢跑forest-jogging
    https://developer.android.com/codelabs/java-to-kotlin
    今日英语
    架构师技能图谱
    java接口防重提交如何处理
    看看人家那后端API接口写得,那叫一个优雅!
    MySQL不推荐使用uuid或者雪花id作为主键
    “12306”是如何支撑百万QPS的?
    阿里巴巴为什么能抗住90秒100亿?看完这篇你就明白了!
  • 原文地址:https://www.cnblogs.com/hhlya/p/13376612.html
Copyright © 2011-2022 走看看