天平 (Not so Mobile UVA - 839)

Posted secoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了天平 (Not so Mobile UVA - 839)相关的知识,希望对你有一定的参考价值。

题目描述:

技术分享图片

题目思路:

1.DFS建树

2.只有每个树的左右子树都平衡整颗树才平衡

 1 #include <iostream>
 2 using namespace std;
 3 
 4 bool solve(int& w)
 5 {
 6     int d1,w1,d2,w2;
 7     cin >> w1 >> d1 >> w2 >> d2 ;
 8     bool b1 = true ,b2 = true ;
 9     if(!w1) b1 = solve(w1) ;
10     if(!w2) b2 = solve(w2) ;
11     w = w1 + w2 ;
12     return (b1 && b2 && (w1 * d1 == w2 * d2)) ;    
13 }
14 
15 int main(int argc, char *argv[])
16 {
17     int t,w;
18     scanf("%d",&t) ;
19     while(t--)
20     {
21         if(solve(w)) cout << "YES" << endl;
22         else cout << "NO" << endl ;
23         if(t) cout << endl ;
24     } 
25     return 0;
26 }

 

以上是关于天平 (Not so Mobile UVA - 839)的主要内容,如果未能解决你的问题,请参考以下文章

天平 (Not so Mobile UVA - 839)

Not so Mobile UVA - 839

uva 839 Not so Mobile

Uva 839 Not so Mobile

数据结构Not so Mobile (6-9)

Uva--839 Not so Mobile(二叉树的递归遍历)