题目大意: 按照输入的格式建立树,然后找到是否有个从叶子节点到跟节点的和为我们所要找的值,有的话就输出yes,否则输出no
第一次做树的题目还是挺崩溃的。。看着题解敲了一遍。。
#include <iostream>
#include <cstdlib>
#include <cstdio>
using namespace std;
char input(void)
{
char temp;
scanf("%c", &temp);
while (temp == ' ' || temp == '\n')
scanf("%c", &temp);
return temp;
}
int deal(int v, int *leaf)
{
int temp, value;
scanf("%d", &value);
temp = input();
int max = 0, l = 0, r = 0;
if (temp == '(') {
if (deal(v - value, &l)) max = 1;
temp = input();
if (deal(v - value, &r)) max = 1;
temp = input();
if (l && r) max = (v == value);
}
else *leaf = 1;
return max;
}
int main()
{
int n, temp;
while (~scanf("%d", &n)) {
input();
if (deal(n, &temp))
printf("yes\n");
else printf("no\n");
}
return 0;
}