0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 17:16:28 +00:00

P2562 [AHOI2002]Kitty猫基因编码

R41156420
This commit is contained in:
Baoshuo Ren 2020-11-03 17:34:22 +08:00 committed by Baoshuo Ren
parent bc2208afd7
commit 38e483c67c
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

20
problem/P2562/P2562.cpp Normal file
View File

@ -0,0 +1,20 @@
#include <bits/stdc++.h>
using namespace std;
string work(string s) {
if (s.find('1') == string::npos) {
return "A";
}
if (s.find('0') == string::npos) {
return "B";
}
return "C" + work(s.substr(0, s.size() / 2)) + work(s.substr(s.size() / 2));
}
int main() {
string s;
cin >> s;
cout << work(s) << endl;
return 0;
}