-
Notifications
You must be signed in to change notification settings - Fork 0
/
aug4.cpp
72 lines (72 loc) · 860 Bytes
/
aug4.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include<iostream>
#include<string.h>
#include<vector>
#include<algorithm>
#include<math.h>
using namespace std;
bool same(string s,int n)
{
for(int i=0;i<n-1;i++)
if(s[i]!=s[i+1])
return 0;
return 1;
}
bool zero_one(int a[],int b[])
{
for(int i=0;i<26;i++)
if(a[i]>=1&&b[i]==0)
return 1;
return 0;
}
bool exist(int a[],int b[])
{
for(int i=0;i<26;i++)
if(!a[i]&&b[i])
return 0;
return 1;
}
int main()
{
string s,p;
int no,n,i,j;
cin>>no;
while(no--)
{
cin>>s>>p;
n=s.length();
int a[26]={0},b[26]={0};
memset(a,0,26);
memset(b,0,26);
if(same(s,n)&&same(p,n))
{
if(s[0]!=p[0]&&n>1)
cout<<"A"<<endl;
else
cout<<"B"<<endl;
}
else
{
for(i=0;i<n;i++)
{
++a[s[i]-'a'];
++b[p[i]-'a'];
}
bool f=0;
for(i=0;i<26;i++)
{
if(a[i]>1&&!b[i])
{f=1;break;}
}
if(f)
cout<<"A"<<endl;
else
{
if(zero_one(a,b)&&exist(a,b))
cout<<"A"<<endl;
else
cout<<"B"<<endl;
}
}
}
return 0;
}