Educational Codeforces Round 51 (Rated for Div. 2) A,B,C 题解

传送门

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 exactly once, 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 <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
	int w;
	cin>>w;
	while(w--)
	{
		int n=0,m=0,t=0;
		string s;
		cin>>s;
		for(int i=0;i<s.size();i++)
		{
			if(s[i]>='a'&&s[i]<='z')
			{
				n++;
			}
			if(s[i]>='A'&&s[i]<='Z')
			{
				m++;
			}
			if(s[i]>='0'&&s[i]<='9')
			{
				t++;
			}
		}
		for(int i=0;i<sizeof(s);i++)
		{
			if(t&&n&&m)
			break;
			if(s[i]>='a'&&s[i]<='z'&&n>1)
			{
				if(m==0)
				{
					m++;
					s[i]='A';
					continue;
				}
				if(t==0)
				{
					t++;
					s[i]='1';
					continue;
				}
			}
			if(s[i]>='A'&&s[i]<='Z'&&m>1)
			{
				if(n==0)
				{
					n++;
					s[i]='a';
					continue;
				}
				if(t==0)
				{
					t++;
					s[i]='1';
					continue;
				}
			}
			if(s[i]>='0'&&s[i]<='9'&&t>1)
			{
				if(n==0)
				{
					n++;
					s[i]='a';
					continue;
				}
				if(m==0)
				{
					m++;
					s[i]='A';
					continue;
				}
			}
		}
		cout<<s<<endl;
	}
	return 0;
} 

B. Relatively Prime Pairs

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given a set of all integers from ll to rr inclusive, l<rl<r, (r−l+1)≤3⋅105(r−l+1)≤3⋅105 and (r−l)(r−l) is always odd.

You want to split these numbers into exactly r−l+12r−l+12 pairs in such a way that for each pair (i,j)(i,j) the greatest common divisor of ii and jj is equal to 11. Each number should appear in exactly one of the pairs.

Print the resulting pairs or output that no solution exists. If there are multiple solutions, print any of them.

Input

The only line contains two integers ll and rr (1≤l<r≤10181≤l<r≤1018, r−l+1≤3⋅105r−l+1≤3⋅105, (r−l)(r−l) is odd).

Output

If any solution exists, print "YES" in the first line. Each of the next r−l+12r−l+12 lines should contain some pair of integers. GCD of numbers in each pair should be equal to 11. All (r−l+1)(r−l+1) numbers should be pairwise distinct and should have values from ll to rr inclusive.

If there are multiple solutions, print any of them.

If there exists no solution, print "NO".

Example

input

Copy

1 8

output

Copy

YES
2 7
4 1
3 8
6 5

题意:

 

  • 给出一组从l到r的所有整数,(r-l)总是奇数。
  • 将这些数字精确地分成(r-l+1)/2对,使得对于每对i、j的最大公约数等于1。
  • 打印生成的对。如果有多个解决方案,请打印其中任何一个。
#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
#define ll long long
using namespace std;
int main()
{
	ll l,r;
	cin>>l>>r;
	cout<<"YES"<<endl;
	for(ll i=l;i+1<=r;i+=2)
	{
		cout<<i<<" "<<i+1<<endl;
	 } 
	return 0;
}

 

C. Vasya and Multisets

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Vasya has a multiset ss consisting of nn integer numbers. Vasya calls some number xx nice if it appears in the multiset exactly once. For example, multiset {1,1,2,3,3,3,4}{1,1,2,3,3,3,4} contains nice numbers 22 and 44.

Vasya wants to split multiset ss into two multisets aa and bb (one of which may be empty) in such a way that the quantity of nice numbers in multiset aa would be the same as the quantity of nice numbers in multiset bb (the quantity of numbers to appear exactly once in multiset aaand the quantity of numbers to appear exactly once in multiset bb).

Input

The first line contains a single integer n (2≤n≤100)n (2≤n≤100).

The second line contains nn integers s1,s2,…sn (1≤si≤100)s1,s2,…sn (1≤si≤100) — the multiset ss.

Output

If there exists no split of ss to satisfy the given requirements, then print "NO" in the first line.

Otherwise print "YES" in the first line.

The second line should contain a string, consisting of nn characters. ii-th character should be equal to 'A' if the ii-th element of multiset ssgoes to multiset aa and 'B' if if the ii-th element of multiset ss goes to multiset bb. Elements are numbered from 11 to nn in the order they are given in the input.

If there exist multiple solutions, then print any of them.

Examples

input

Copy

4
3 5 7 1

output

Copy

YES
BABA

input

Copy

3
3 5 1

output

Copy

NO

题意:

  • 定义 nice numbers为一组数里只出现一次的数
  • 给你n个数让你把这组数分成两个数组 A,B 若这两个数组nice numbers数相等 输出Yes并且指出每个数在A还是B里 如果有多种情况 输出其中一种情况即可

题解: 

  • 若这组数里面只出现一次的数一共有偶数个说明可以组成

  • 若这组数里面只出现一次的数一共有奇数个 并且出现次数大于三的个数为0 说明不可以组成 

  • 这组数里面只出现一次的数一共有奇数个 并且出现次数大于三的个数不为0 说明可以组成 比如 出现了三次5 可以将一个5放在一个数组 其他的放在另一个数组 这样就可以看成出现次数为1的个数为偶数了 

 

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring> 
#include<map>
#define N 0x3f3f3f3f
#define ll long long
using namespace std;
int main()
{
	int n;
	cin>>n;
	int a[1000];
	int f[1000];
	int t[1000];
	for(int i=1;i<=n;i++)
	{
		cin>>t[i];
		a[t[i]]++;
	}
	int x=0,y=0;
	for(int i=1;i<=100;i++)
	{
		if(a[i]==1)
		{
			x++;
		}
		if(a[i]>2)
		y++;
	}
	if(x%2==1&&y==0)
	{
		cout<<"NO"<<endl;
	}
	else
	{
		cout<<"YES"<<endl;
		int j=1;
		for(int i=1;i<=x/2;j++)
		{
			if(a[t[j]]==1)
			{
				f[j]=1;
				i++;
			}
		}
		if(x%2)
		{
			for(int i=1;i<=n;i++)
			{
				if(a[t[i]]>2)
				{
					f[i]=1;
					break;
				}
			}
		}
		for(int i=1;i<=n;i++)
		{
			if(f[i]==1)
			cout<<'A';
			else
			cout<<'B';
		}
	}
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
"educational codeforces round 103 (rated for div. 2)"是一个Codeforces平台上的教育性比赛,专为2级选手设计评级。以下是有关该比赛的回答。 "educational codeforces round 103 (rated for div. 2)"是一场Codeforces平台上的教育性比赛。Codeforces是一个为程序员提供竞赛和评级的在线平台。这场比赛是专为2级选手设计的,这意味着它适合那些在算法和数据结构方面已经积累了一定经验的选手参与。 与其他Codeforces比赛一样,这场比赛将由多个问题组成,选手需要根据给定的问题描述和测试用例,编写程序来解决这些问题。比赛的时限通常有两到三个小时,选手需要在规定的时间内提交他们的解答。他们的程序将在Codeforces的在线评测系统上运行,并根据程序的正确性和效率进行评分。 该比赛被称为"educational",意味着比赛的目的是教育性的,而不是针对专业的竞争性。这种教育性比赛为选手提供了一个学习和提高他们编程技能的机会。即使选手没有在比赛中获得很高的排名,他们也可以从其他选手的解决方案中学习,并通过参与讨论获得更多的知识。 参加"educational codeforces round 103 (rated for div. 2)"对于2级选手来说是很有意义的。他们可以通过解决难度适中的问题来测试和巩固他们的算法和编程技巧。另外,这种比赛对于提高解决问题能力,锻炼思维和提高团队合作能力也是非常有帮助的。 总的来说,"educational codeforces round 103 (rated for div. 2)"是一场为2级选手设计的教育性比赛,旨在提高他们的编程技能和算法能力。参与这样的比赛可以为选手提供学习和进步的机会,同时也促进了编程社区的交流与合作。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值