POJ-2499 Binary Tree

POJ-2499 Binary Tree

Binary Tree
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 5211   Accepted: 2420

Description

Background 

Binary trees are a common data structure in computer science. In this problem we will look at an infinite binary tree where the nodes contain a pair of integers. The tree is constructed like this: 

  • The root contains the pair (1, 1). 
  • If a node contains (a, b) then its left child contains (a + b, b) and its right child (a, a + b)


Problem 

Given the contents (a, b) of some node of the binary tree described above, suppose you are walking from the root of the tree to the given node along the shortest possible path. Can you find out how often you have to go to a left child and how often to a right child?

Input

The first line contains the number of scenarios. 

Every scenario consists of a single line containing two integers i and j (1 <= i, j <= 2*10
9) that represent 

a node (i, j). You can assume that this is a valid node in the binary tree described above.

Output

The output for every scenario begins with a line containing “Scenario #i:”, where i is the number of the scenario starting at 1. Then print a single line containing two numbers l and r separated by a single space, where l is how often you have to go left and r is how often you have to go right when traversing the tree from the root to the node given in the input. Print an empty line after every scenario.

Sample Input

3
42 1
3 4
17 73

Sample Output

Scenario #1:
41 0

Scenario #2:
2 1

Scenario #3:
4 6

 1 /*  2 题意:根(a,b),则左孩子为(a+b,b),右孩子为(a,a+b)  3  给定(m,n),初试根为(1,1),从(1,1)到(m,n)需要往左子树走几次,  4  往右子树走几次。  5 思路:逆向思维,从(m,n)到(1,1)。  6  给定(m,n),求其父亲,如果m>n,则他父亲是(m-n,n),  7  否则(m,n-m)。  8 代码一: ----TLE  9 #include <iostream> 10 11 using namespace std; 12 13 int main() 14 { 15  int T, a, b, lcnt, rcnt; 16  cin >> T; 17  for(int i = 1; i <= T; ++i) 18  { 19  cin >> a >> b; 20  lcnt = rcnt = 0; 21  while(a != 1 || b != 1) 22  { 23  if(a >= b) 24  { 25  ++lcnt; 26  a -= b; 27  } 28  else 29  { 30  ++rcnt; 31  b -= a; 32  } 33  } 34  cout << "Scenario #" << i << ':' << endl; 35  cout << lcnt << ' ' << rcnt << endl <<endl; 36  } 37  return 0; 38 } 39 40 代码二: 41 用除法代替减法,得到的商即为往左走的次数,最后的m=m%n。 42 n>m时情况类推。 43 需要特别注意的是: 44  如果m>n,m%n == 0 怎么办?因为根(1,1)不可能有0存在,所以特殊处理一下: 45 次数:m/n-1;m=1 46 */ 47 #include <iostream> 48 49 using namespace std; 50 51 int main() 52 { 53 int T, a, b, lcnt, rcnt; 54 cin >> T; 55 for(int i = 1; i <= T; ++i) 56  { 57 cin >> a >> b; 58 lcnt = rcnt = 0; 59 while(a != 1 || b != 1) 60  { 61 if(a >= b) 62  { 63 if(a % b) 64  { 65 lcnt += a/b; 66 a %= b; 67  } 68 else 69  { 70 lcnt += a/b-1; 71 a = 1; 72  } 73  } 74 else 75  { 76 if(b % a) 77  { 78 rcnt += b/a; 79 b %= a; 80  } 81 else 82  { 83 rcnt += b/a-1; 84 b = 1; 85  } 86  } 87  } 88 cout << "Scenario #" << i << ':' << endl; 89 cout << lcnt << ' ' << rcnt << endl <<endl; 90  } 91 return 0; 92 }

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110203.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • OkhttpClient的使用详解

    **概述及特性**HTTP是现代应用常用的一种交换数据和媒体的网络方式,高效地使用HTTP能让资源加载更快,节省带宽。OkHttpClient是一个高效的HTTP客户端,它有以下默认特性:支持HTTP/2,允许所有同一个主机地址的请求共享同一个socket连接连接池减少请求延时透明的GZIP压缩减少响应数据的大小缓存响应内容,避免一些完全重复的请求当网络出现问题的时候OkHttp依…

  • 卷积核与特征提取_卷积层特征各层如何保存

    卷积核与特征提取_卷积层特征各层如何保存线性滤波与卷积的基本概念线性滤波可以说是图像处理最基本的方法,它可以允许我们对图像进行处理,产生很多不同的效果。做法很简单。首先,我们有一个二维的滤波器矩阵(有个高大上的名字叫卷积核)和一个要处理的

  • 七个免费邮件服务器软件「建议收藏」

    目前邮件是企业的工作要件之一,而很多企事业是没有这方面的大预算,所以好的免费邮箱服务器还是很必要的.以下就推荐几个不错的.(比较看好hmailserver|extmail)hMailServerhmailserver是一个免费的win下的邮件服务器,类似于国内的winmail的管理界面只是没有中文不过可以找到网上的中文包补丁,支持SMTP…

  • cloin 激活码【2021.8最新】

    (cloin 激活码)JetBrains旗下有多款编译器工具(如:IntelliJ、WebStorm、PyCharm等)在各编程领域几乎都占据了垄断地位。建立在开源IntelliJ平台之上,过去15年以来,JetBrains一直在不断发展和完善这个平台。这个平台可以针对您的开发工作流进行微调并且能够提供…

  • cmd打印_怎么让表格打印完整

    cmd打印_怎么让表格打印完整http://blog.csdn.net/zhanjianshinian/article/details/10397401DM36xinitializationpassed!TIUBLVersion:1.50BootingCatalogBootLoader         //启动目录BootLoader         

  • 几种server模型

    几种server模型

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号