题目地址:传送门
题意:
给你三个串,长度为 2 n 2n 2n,构造一个 a n s ans ans串的长度为 3 n 3n 3n,使得有两个串是是 a n s ans ans的 s u b s e q u e n c e s subsequences subsequences子序列。
思考:
- 首先可以想到一种暴力的做法,两两枚举,之后找 l c s lcs lcs,假如 l e n ( l c s ) = = n len(lcs) == n len(lcs)==n,那么就找到答案了。
- 但是朴素的lcs复杂度是 O ( n 2 ) O(n^2) O(n2)
思路1:(这题是div2d
,且串的字符只有两种
)
- 对于一个长度为 2 n 2n 2n的串 S S S,要么cnt1的个数 ≥ n \ge n ≥n,要么<.
- 这里两个串
S
1
,
S
2
S1,S2
S1,S2
假如:S1: cnt1的个数 ≥ n \ge n ≥n,S2: cnt1的个数 < n < n <n(S2: cnt0的个数 ≥ n \ge n ≥n)
那么再加一个串,不管它是什么,
- S 3 S3 S3 和 S 1 S1 S1 构成长度至少为 n n n的 “1111111…111”
或者
S 3 S3 S3 和 S 2 S2 S2 构成长度至少为 n n n的 “000000…000”
思路2:
上数据结构,但这是d,不推荐。。。。。
AC(思路1)
/*
皮卡丘冲鸭!
へ /|
/\7 ∠_/
/ │ / /
│ Z _,< / /`ヽ
│ ヽ / 〉
Y ` / /
イ● 、 ● ⊂⊃〈 /
() へ | \〈
>ー 、_ ィ │ //
/ へ / ノ<| \\
ヽ_ノ (_/ │//
7 |/
>―r ̄ ̄`ー―_
*/
#include <iostream>
#include <bits/stdc++.h>
#define For(i,x,y) for(int i=(x); i<=(y); i++)
#define fori(i,x,y) for(int i=(x); i<(y); i++)
#define rep(i,y,x) for(int i=(y); i>=(x); i--)
#define mst(x,a) memset(x,a,sizeof(x))
#define pb push_back
#define sz(a) (int)a.size()
#define ALL(x) x.begin(),x.end()
#define mp make_pair
#define fi first
#define se second
#define db double
#define endl '\n'
#define debug(a) cout << #a << ": " << a << endl
using namespace std;
typedef long long LL;
typedef long long ll;
typedef unsigned long long ULL;
const LL INF = 0x3f3f3f3f3f3f3f3f;
const int inf = 0x3f3f3f3f;
const int mod = 1e9+7;
typedef pair<int,int>pa;
typedef pair<ll,ll>pai;
typedef pair<db,db> pdd;
const db eps = 1e-8;
const db pi = acos(-1.0);
template<typename T1, typename T2> void ckmin(T1 &a, T2 b) { if (a > b) a = b; }
template<typename T1, typename T2> void ckmax(T1 &a, T2 b) { if (a < b) a = b; }
int read() {
int x = 0, f = 0; char ch = getchar();
while (!isdigit(ch)) f |= ch == '-', ch = getchar();
while (isdigit(ch)) x = 10 * x + ch - '0', ch = getchar();
return f ? -x : x;
}
template<typename T> void print(T x) {
if (x < 0) putchar('-'), x = -x;
if (x >= 10) print(x / 10);
putchar(x % 10 + '0');
}
template<typename T> void print(T x, char let) {
print(x), putchar(let);
}
template<class T> bool uin(T &a, T b) { return a > b ? (a = b, true) : false; }
template<class T> bool uax(T &a, T b) { return a < b ? (a = b, true) : false; }
void sol(){
string s[3];
int n;
cin>>n;
fori(i,0,3)cin>>s[i];
int cnt[3]{};
//
fori(rot,0,3)fori(i,0,2*n)cnt[rot]+=s[rot][i]-'0';
//
int tmp[3]{};
fori(i,0,3)tmp[i] = cnt[i];
sort(cnt,cnt+3);
char ch = '1';
if(cnt[1]<n)ch = '0';
//debug(ch);
fori(i,0,3)cnt[i] = tmp[i];
//
int id1 = -1, id2 = -1;
fori(i,0,3){
if(ch=='0'){
if(cnt[i]<=n){
// debug(i);
// debug(cnt[i]);
if(id1==-1)id1 = i;
else if(id2==-1)id2 = i;
}
}else {
if(cnt[i]>=n){
if(id1==-1)id1 = i;
else if(id2==-1)id2 = i;
}
}
}
string str = s[id1];
string t = s[id2];
string ans="";
// debug(str);
// debug(t);
int p =0, q = 0, cot = 0;
while(p < 2*n && q < 2*n){
if(str[p]!=ch && t[q]!=ch){
ans+=str[p];
p++,q++;
}else {
if(str[p] == ch){
while(t[q]!=ch){
ans += t[q];
q++;
}
}else if(t[q] == ch){
while(str[p]!=ch){
ans += str[p];
p++;
}
}
ans+=str[p];
cot++;
p++,q++;
}
if(cot==n)break;
}
// debug(ans);
while(p<2*n)ans+=str[p], p++;
while(q<2*n)ans+=t[q], q++;
while(sz(ans)<3*n)ans+='0';
cout<<ans<<endl;
}
//#define LOCAL
int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#ifdef LOCAL
freopen("in.txt", "r", stdin);
#endif // LOCAL
int tt;
cin>>tt;
while(tt--)sol();
return 0;
}