链接:



An Old Stone Game
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 3132   Accepted: 1422

Description

There is an old stone game, played on an arbitrary general tree T. The goal is to put one stone on the root of T observing the following rules:

  1. At the beginning of the game, the player picks K stones and puts them all in one bucket.
  2. At each step of the game, the player can pick one stone from the bucket and put it on any empty leaf.
  3. When all of the r immediate children of a node p each has one stone, the player may remove all of these r stones, and put one of the stones on p. The other r - 1 stones are put back into the bucket, and can be used in the later steps of the game.

The player wins the game if by following the above rules, he succeeds to put one stone on the root of the tree. 

You are to write a program to determine the least number of stones to be picked at the beginning of the game (K), so that the player can win the game on the given input tree. 

Input

The input describes several trees. The first line of this file is M, the number of trees (1 <= M <= 10). Description of these M trees comes next in the file. Each tree has N < 200 nodes, labeled 1, 2, ... N, and each node can have any possible number of children.
Root has label 1. Description of each tree starts with N in a separate line. The following N lines describe the children of all nodes in order of their labels. Each line starts with a number p (1 <= p <= N, the label of one of the nodes), r the number of the
immediate children of p, and then the labels of these r children.

Output

One line for each input tree showing the minimum number of stones to be picked in step 1 above, in order to win the game on that input tree.

Sample Input

2
7
1 2 2 3
2 2 5 4
3 2 6 7
4 0
5 0
6 0
7 0
12
1 3 2 3 4
2 0
3 2 5 6
4 3 7 8 9
5 3 10 11 12
6 0
7 0
8 0
9 0
10 0
11 0
12 0

Sample Output

3
4

Source


题意:


       输入的第一行是测试数据组数 T 【T棵树】

      第二行表示当前树中有 N 个节点

      下面 N 行:

      每一行的前两个数 index num 分别表示当前节点的编号为 index, 有 num 个叶子

      剩下 num 个数表示各个叶子节点的编号


      游戏规则:

      从叶子节点开始放石头,每个叶子放一个

      如果放满了当前节点的所有叶子节点, 那么可以拿掉所有的叶子节点的石头,

      并且从拿掉的石头中取出一个放在当前节点中

      :放到根节点 1 最少需要多少个石头


算法:递归+排序


思路:

来自 mmchen blog:  点击打开链接

        从叶子节点往根找,

       当前根的所有叶子节点所需石头数都找到

       先按照每个叶子节点所需的stone从大到小排序

       (1) 假设各个叶子节点所需石头

           a1 > a2 > a3...【中间没有 ==】 那么根节点所需最多stone就是 a1

       (2) 假设在排序后,各个叶子节点所需stone存在相等的情况

           a1 >= a2 >= a3 ...那么每次遇到一个 == ,stone 就要比 a1 多+1

           因为如果用 a1 个石头放满了第一个叶子后,还剩下 a1-1 个石头无法满足 a2

       (3) 排序后出现 a1 >= a2 > a3 > a4 >= a5 的交叉情况,

           根据填满前面的 叶子 后剩下的石头看是否满足 a 就好了,

           根据 (2) 的分析不满足最多只需 +1即可

code:

/********************************************************************************
E Accepted 336 KB 0 ms C++ 1059 B 看的 MMchen 的了Orz 题意:输入的第一行是测试数据组数 T 【T棵树】
第二行表示当前树中有 N 个节点
下面 N 行:
每一行的前两个数 index num 分别表示当前节点的编号为 index, 有 num 个叶子
剩下 num 个数表示各个叶子节点的编号
游戏规则:
从叶子节点开始放石头,每个叶子放一个
如果放满了当前节点的所有叶子节点, 那么可以拿掉所有的叶子节点的石头,
并且从拿掉的石头中取出一个放在当前节点中
问:放到根节点 1 最少需要多少个石头 算法:递归+排序 思路: 从叶子节点往根找,
当前根的所有叶子节点所需石头数都找到
先按照每个叶子节点所需的stone从大到小排序
(1) 假设各个叶子节点所需石头
a1 > a2 > a3...【中间没有 ==】 那么根节点所需最多stone就是 a1
(2) 假设在排序后,各个叶子节点所需stone存在相等的情况
a1 >= a2 >= a3 ...那么每次遇到一个 == ,stone 就要比 a1 多+1
因为如果用 a1 个石头放满了第一个叶子后,还剩下 a1-1 个石头无法满足 a2
(3) 排序后出现 a1 >= a2 > a3 > a4 >= a5 的交叉情况,
根据填满前面的 叶子 后剩下的石头看是否满足 a 就好了,
根据 (2) 的分析不满足最多只需 +1即可 ********************************************************************************/
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std; const int maxn = 210; int node[maxn][maxn]; bool cmp(int a, int b)
{
return a > b;
} int solve(int index) //求解编号为 index 的节点所需石头
{
if(node[index][0] == 0) //如果第index节点没有叶子,只需填满自己
{
return 1;
}
int tmp[maxn]; //暂存第 index 节点的每一个叶子所需的石头
for(int i = 1; i <= node[index][0]; i++) // 遍历第 index 节点的每一个叶子
{
tmp[i] = solve(node[index][i]); //递归求解
}
sort(tmp+1, tmp+node[index][0]+1, cmp); //按所需石头从大到小排序
int ans = tmp[1]; //排序后第一个最大
for(int i = 2; i <= node[index][0]; i++) //遍历后面的看是否满足
{
if(tmp[i] > (ans-(i-1))) ans++; //如果刚好填完前面 i-1 后不够,最多+1, 前面已经排序
}
return ans; } int main()
{
int T;
int n;
scanf("%d", &T);
while(T--)
{
memset(node, 0, sizeof(node));
scanf("%d", &n); //总节点数
int index, num;
for(int i = 1; i <= n; i++)
{
scanf("%d%d", &index, &num); //index当前节点编号, num 当前节点拥有的叶子
node[index][0] = num; // 0下标存叶子节点数目, 剩下的存当前根叶子编号
for(int j = 1; j <= num; j++)
{
scanf("%d", &node[index][j]);
}
}
int ans = solve(1); // 求解根节点
printf("%d\n", ans);
}
return 0;
}


POJ 1694 An Old Stone Game【递归+排序】的更多相关文章

  1. poj 1694 An Old Stone Game 树形dp

    //poj 1694 //sep9 #include <iostream> #include <algorithm> using namespace std; const in ...

  2. POJ 1694 An Old Stone Game

    题目: Description There is an old stone game, played on an arbitrary general tree T. The goal is to pu ...

  3. C#算法基础之递归排序

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  4. c++(非递归排序)

    在上面一篇博客当中,我们发现普通查找和排序查找的性能差别很大.作为一个100万的数据,如果使用普通的查找方法,那么每一个数据查找平均下来就要几十万次,那么二分法的查找呢,20多次就可以搞定.这中间的差 ...

  5. PHP递归排序

    递归算法对于任何一个编程人员来说,应该都不陌生.因为递归这个概念,无论是在PHP语言还是Java等其他编程语言中,都是大多数算法的灵魂. 对于PHP新手来说,递归算法的实现原理可能不容易理解.但是只要 ...

  6. POJ 1740 A New Stone Game(博弈)题解

    题意:有n个石子堆,每一个都可以轮流做如下操作:选一个石堆,移除至少1个石子,然后可以把这堆石子随便拿几次,随便放到任意的其他石子数不为0的石子堆,也可以不拿.不能操作败. 思路:我们先来证明,如果某 ...

  7. 冒泡排序的思想 python 冒泡排序、递归排序

    冒泡排序的时间复杂度是O(N^2) 冒泡排序的思想: 每次比较两个相邻的元素, 如果他们的顺序错误就把他们交换位置 比如有五个数: 12, 35, 99, 18, 76, 从大到小排序, 对相邻的两位 ...

  8. PHP递归排序怎么实现的?

    递归算法对于任何一个编程人员来说,应该都不陌生.因为递归这个概念,无论是在PHP语言还是Java等其他编程语言中,都是大多数算法的灵魂.   对于PHP新手来说,递归算法的实现原理可能不容易理解.但是 ...

  9. POJ 1740 A New Stone Game

    A New Stone Game Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 5453   Accepted: 2989 ...

随机推荐

  1. consist of, made up of

    consist vi.由……组成:由……构成(常和介词of构成固定搭配)made up of由……组成[例如] One year consists of 365 days.一年有365天.The te ...

  2. Java 堆内存模型

    堆内存 Java 中的堆是 JVM 所管理的最大的一块内存空间,主要用于存放各种类的实例对象. 在 Java 中.堆被划分成两个不同的区域:新生代 ( Young ).老年代 ( Old ).新生代 ...

  3. 【共享单车】—— React后台管理系统开发手记:UI菜单各个组件使用(Andt UI组件)

    前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. ...

  4. springboot @Configuration

    有了@Configuration,原来的springBean的配置文件可以去掉了, 原来在application.xml中配置的bean可以配置在@Configuration注解的来类中,使用@Bea ...

  5. Python的Django框架中的Cookie相关处理

    Python的Django框架中的Cookie相关处理 浏览器的开发人员在非常早的时候就已经意识到. HTTP's 的无状态会对Web开发人员带来非常大的问题,于是(cookies)应运而生. coo ...

  6. 01-2制作U盘启动盘--装机助理工具

    在可以上网的电脑上执行制作启动盘的操作: 打开浏览器输入:http://www.zhuangjizhuli.com/upan.html 1.制作U盘启动盘: 2.下载 装机助理 软件 3.步骤: 第一 ...

  7. LeetCode LinkList 23. Merge k Sorted Lists

    这两天一直也没有顾上记录一下自己做过的题目,回头看看,感觉忘的好快,今天做了一个hard,刚开始觉得挺难得,想了两种方法,一种是每次都从k个list中选取最小的一个,为空的直接跳过,再就是每次合并其中 ...

  8. C#中String.Empty、NULL与""三者的区别

    String.Empty和""是一样的,都是空,习惯用string.empty. Null和他们就有区别了,就是没有值,也没分配地址,此处可以理解成什么都没有.

  9. CSS实现绝对定位居中

    我们经常用margin:0 auto来实现水平居中,而一直认为margin:auto不能实现垂直居中……实际上,实现垂直居中仅需要声明元素高度和下面的CSS: .Absolute-Center { m ...

  10. git 修改远程仓库地址

    以前的老项目需要修改git路径,为了保留之前的上传记录和分支等可以通过以下方法解决这个问题 sourceTree项目远程仓库,直接修改origin路径,然后提交一个commit即可将项目上传到新的gi ...