0%

[題解]APCS七言對聯

P1 七言對聯

題目連結

總共有ABC三種規則,就每一種都比對一次就可以了!

時間複雜度: 共有 $n$ 組對聯,每一組都 $O(1)$ 檢查,時間 $O(n)$ 。(不過n最大也才50,不論什麼複雜度都可以吧)

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
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define int long long
#define N 50
#define Orz ios::sync_with_stdio(0),cin.tie(0)
#define INF 2e18
#define rep(i,l,r) for(int i=l;i<=r;i++)
#define all(x) x.begin(),x.end()
#define pii pair<int,int>
#define x first
#define y second
using namespace std;
int n;
bool a[N],b[N],f = 1;

signed main(){
Orz;
cin>>n;
while(n--){
rep(i,1,7)cin>>a[i];
rep(i,1,7)cin>>b[i];
f = 1;
if(a[2]==a[4]||a[2]!=a[6]){
cout<<"A";f = 0;
}
else if(b[2]==b[4]||b[2]!=b[6]){
cout<<"A";f = 0;
}

if(a[7]!=1 || b[7]!=0){
cout<<"B";f = 0;
}

if(a[2]==b[2]||a[4]==b[4]||a[6]==b[6]){
cout<<"C";f = 0;
}
if(f)cout<<"None"<<endl;
else cout<<endl;
}

}