码迷,mamicode.com
首页 > 其他好文 > 详细

UVa 112 - Tree Summing

时间:2014-06-24 18:32:10      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   数据   2014   os   

题目:给你一个数和一棵树,问时钟是否存在根到叶子的路径使得路径上的数字和与已知数相等。

分析:递归、栈。因为除了最外边的树外,其他都有两颗子树,直接递归求解即可。

            如果存在一棵子树成立,即返回成立。注意叶子节点的另可子树为空,叶子直接返回结果。

说明:注意数据中可能有负数。(POJ1145)

#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;
}

测试数据:

-6 (3(-9()())())
9 (5(4(3(2()())())())())

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

UVa 112 - Tree Summing

标签:class   blog   code   数据   2014   os   

原文地址:http://blog.csdn.net/mobius_strip/article/details/34066019

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!