delete pics to save space
This commit is contained in:
55
2.10562.cpp
Normal file
55
2.10562.cpp
Normal file
@ -0,0 +1,55 @@
|
||||
#include<cstdio>
|
||||
#include<cctype>
|
||||
#include<cstring>
|
||||
using namespace std;
|
||||
const int maxn=210;
|
||||
int n;
|
||||
char buf[maxn][maxn];
|
||||
void dfs(int r,int c)
|
||||
{
|
||||
printf("%c(",buf[r][c]);
|
||||
if(r+1<n&&buf[r+1][c]=='|')
|
||||
{
|
||||
int i=c;
|
||||
while(i-1>=0&&buf[r+2][i-1]=='-') i--;
|
||||
while(buf[r+2][i]=='-'&&buf[r+3][i]!=0)
|
||||
{
|
||||
if(!isspace(buf[r+3][i])) dfs(r+3,i);
|
||||
i++;
|
||||
}
|
||||
}
|
||||
printf(")");
|
||||
}
|
||||
void solve()
|
||||
{
|
||||
n=0;
|
||||
while(1)
|
||||
{
|
||||
fgets(buf[n],maxn,stdin);
|
||||
if(buf[n][0]=='#') break;
|
||||
else n++;
|
||||
}
|
||||
printf("(");
|
||||
if(n)
|
||||
{
|
||||
int len=strlen(buf[0]);
|
||||
for(int i=0;i<len;i++)
|
||||
if(buf[0][i]!=' ')
|
||||
{
|
||||
dfs(0,i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
printf(")\n");
|
||||
}
|
||||
int main()
|
||||
{
|
||||
#ifdef local
|
||||
freopen("pro.in","r",stdin);
|
||||
#endif
|
||||
int T;
|
||||
fgets(buf[0],maxn,stdin);
|
||||
sscanf(buf[0],"%d",&T);
|
||||
while(T--) solve();
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user