提交时间:2023-08-23 20:41:00

运行 ID: 99804

#include<bits/stdc++.h> using namespace std; int n; char t[5000]; string s; char f(int x) { if(t[x]=='I' || t[x]=='B' || t[x]=='F') { return t[x]; } char t1=f(x*2); char t2=f(x*2+1); if(t1==t2) { t[x]=t1; return t[x]; } else { t[x]='F'; return t[x]; } } void tree(int x) { if(t[x*2]) { tree(x*2); } if(t[x*2+1]) { tree(x*2+1); } cout<<t[x]; return ; } int main() { cin>>n; cin>>s; for(int i=(1<<n);i<(1<<(n+1));i++) { if(s[i-(1<<n)]=='0') { t[i]='B'; } else { t[i]='I'; } } f(1); tree(1); return 0; }