首页 > 其他 > 详细

UVa 112 - Tree Summing

时间:2014-03-08 17:54:57      阅读:406      评论:0      收藏:0      [点我收藏+]

Tree Summing 

Background

LISP was one of the earliest high-level programming languages and, with FORTRAN, is one of the oldest languages currently being used. Lists, which are the fundamental data structures in LISP, can easily be adapted to represent other important data structures such as trees.

This problem deals with determining whether binary trees represented as LISP S-expressions possess a certain property.

The Problem

Given a binary tree of integers, you are to write a program that determines whether there exists a root-to-leaf path whose nodes sum to a specified integer. For example, in the tree shown below there are exactly four root-to-leaf paths. The sums of the paths are 27, 22, 26, and 18.

bubuko.com,布布扣

Binary trees are represented in the input file as LISP S-expressions having the following form.

 
empty tree 		 ::= 		 ()

tree ::= empty tree bubuko.com,布布扣 (integer tree tree)

The tree diagrammed above is represented by the expression (5 (4 (11 (7 () ()) (2 () ()) ) ()) (8 (13 () ()) (4 () (1 () ()) ) ) )

Note that with this formulation all leaves of a tree are of the form (integer () () )

Since an empty tree has no root-to-leaf paths, any query as to whether a path exists whose sum is a specified integer in an empty tree must be answered negatively.

The Input

The input consists of a sequence of test cases in the form of integer/tree pairs. Each test case consists of an integer followed by one or more spaces followed by a binary tree formatted as an S-expression as described above. All binary tree S-expressions will be valid, but expressions may be spread over several lines and may contain spaces. There will be one or more test cases in an input file, and input is terminated by end-of-file.

The Output

There should be one line of output for each test case (integer/tree pair) in the input file. For each pair I,T (I represents the integer, T represents the tree) the output is the string yes if there is a root-to-leaf path in T whose sum is I and no if there is no path in T whose sum is I.

Sample Input

22 (5(4(11(7()())(2()()))()) (8(13()())(4()(1()()))))
20 (5(4(11(7()())(2()()))()) (8(13()())(4()(1()()))))
10 (3 
     (2 (4 () () )
        (8 () () ) )
     (1 (6 () () )
        (4 () () ) ) )
5 ()

Sample Output

yes
no
yes
no


#include <iostream>
#include <cstdio>
using namespace std;

bool flag=false;

void space()
{
	while(cin.peek()==‘ ‘||
		cin.peek()==‘\n‘)
		cin.ignore();
}

bool solve(int sum, int var)
{
	space();
	cin.ignore(); // (
	space();
	if(cin.peek()==‘)‘)
	{
		cin.ignore();// )
		return var==sum?true:false;
	}
	int sign=1;
	if(cin.peek()==‘-‘)
	{
		sign=-1;
		cin.ignore();
	}
	space();
	int n;
	cin>>n;
	bool left = solve(sum, var+n*sign);
	bool right= solve(sum, var+n*sign);
	if(left&&right)
		flag = true;
	space();// ) 回溯忽略‘)’
	cin.ignore();
	return false;// 根结点无需判断
}

int main()
{
//	freopen("in.txt","r",stdin);
	int sum;
	while(cin>>sum)
	{
		flag = false;
		solve(sum, 0);
		cout << (flag?"yes":"no") << endl;
	}
	return 0;
}


UVa 112 - Tree Summing,布布扣,bubuko.com

UVa 112 - Tree Summing

原文:http://blog.csdn.net/china_zoujinyong/article/details/20768037

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!