Educational Codeforces Round 51 (Rated for Div. 2).A. Vasya And Password(模拟)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/XxxxxM1/article/details/82799751

A. Vasya And Password

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Vasya came up with a password to register for EatForces — a string ss. The password in EatForces should be a string, consisting of lowercase and uppercase Latin letters and digits.

But since EatForces takes care of the security of its users, user passwords must contain at least one digit, at least one uppercase Latin letter and at least one lowercase Latin letter. For example, the passwords "abaCABA12", "Z7q" and "3R24m" are valid, and the passwords "qwerty", "qwerty12345" and "Password" are not.

A substring of string ss is a string x=slsl+1…sl+len−1(1≤l≤|s|,0≤len≤|s|−l+1)x=slsl+1…sl+len−1(1≤l≤|s|,0≤len≤|s|−l+1). lenlen is the length of the substring. Note that the empty string is also considered a substring of ss, it has the length 00.

Vasya's password, however, may come too weak for the security settings of EatForces. He likes his password, so he wants to replace some its substring with another string of the same length in order to satisfy the above conditions. This operation should be performed exactlyonce, and the chosen string should have the minimal possible length.

Note that the length of ss should not change after the replacement of the substring, and the string itself should contain only lowercase and uppercase Latin letters and digits.

Input

The first line contains a single integer TT (1≤T≤1001≤T≤100) — the number of testcases.

Each of the next TT lines contains the initial password s (3≤|s|≤100)s (3≤|s|≤100), consisting of lowercase and uppercase Latin letters and digits.

Only T=1T=1 is allowed for hacks.

Output

For each testcase print a renewed password, which corresponds to given conditions.

The length of the replaced substring is calculated as following: write down all the changed positions. If there are none, then the length is 00. Otherwise the length is the difference between the first and the last changed position plus one. For example, the length of the changed substring between the passwords "abcdef" →→ "a7cdEf" is 44, because the changed positions are 22 and 55, thus (5−2)+1=4(5−2)+1=4.

It is guaranteed that such a password always exists.

If there are several suitable passwords — output any of them.

Example

input

Copy

2
abcDCE
htQw27

output

Copy

abcD4E
htQw27

Note

In the first example Vasya's password lacks a digit, he replaces substring "C" with "4" and gets password "abcD4E". That means, he changed the substring of length 1.

In the second example Vasya's password is ok from the beginning, and nothing has to be changed. That is the same as replacing the empty substring with another empty substring (length 0).

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define M(a) memset(a,0,sizeof(a))
#define maxn 200010

bool dig(char c){
    if(c>='0'&&c<='9') return true;
    return false;
}
bool big(char c){
    if(c>='A'&&c<='Z') return true;
    return false;
}
bool sma(char c){
    if(c>='a'&&c<='z') return true;
    return false;
}

int main()
{
    int t;
    cin>>t;
    string s;
    while(t--&&cin>>s)
    {
        int len=s.size();
        int f1=0,f2=0,f3=0,ff1,ff2,ff3;

        for(int i=0;i<len;i++){
            if(dig(s[i])) f1++,ff1=i;
            else if(big(s[i])) f2++,ff2=i;
            else if(sma(s[i])) f3++,ff3=i;
        }
        if(f1&&f2&&f3) s=s;
        else if(f3==len){
            s[0]='1',s[1]='A';
        }else if(f2==len){
            s[0]='1',s[1]='a';
        }else if(f1==len){
            s[0]='a',s[1]='A';
        }else if(f1==0){
            if(f2==1) s[ff3]='1';
            else s[ff2]='1';
        }else if(f2==0){
            if(f1==1) s[ff3]='A';
            else s[ff1]='A';
        }else if(f3==0){
            if(f2==1) s[ff1]='a';
            else s[ff2]='a';
        }
        for(int i=0;i<len;i++){
            printf("%c",s[i]);
        }
        printf("\n");
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/XxxxxM1/article/details/82799751