POJ 1694 올 드 스톤 게임[재 귀+정렬]
http://poj.org/problem?id=1694
http://acm.hust.edu.cn/vjudge/contest/view.action?cid=27454#problem/E
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:
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
Tehran 1999
제목:
입력 한 첫 줄 은 테스트 데이터 그룹 T[T 그루 나무]입 니 다. 두 번 째 줄 은 현재 트 리 에 N 개의 노드 가 있 음 을 나타 낸다. 다음 N 줄: 각 줄 의 앞 두 수 index num 은 현재 노드 의 번 호 를 index 로 표시 하고 num 개의 잎 이 있 습 니 다. 남 은 num 개 수 는 각 잎 노드 의 번 호 를 표시 합 니 다.
게임 규칙:
잎 사 귀 노드 부터 돌 을 넣 고 잎 사 귀 마다 하나씩 넣는다.
현재 노드 의 모든 잎 노드 를 가득 채 우 면 모든 잎 노드 의 돌 을 제거 할 수 있 습 니 다.
그리고 빼 낸 돌 에서 하 나 를 꺼 내 현재 노드 에 놓 습 니 다.
―뿌리 노드 1 에 최소 몇 개의 돌 이 필요 한가?
알고리즘:재 귀+정렬
생각:
mmchen 블 로그: 클릭 하여 링크 열기
잎 사 귀 노드 에서 뿌리 를 찾 으 면, 현재 뿌리의 모든 잎 사 귀 노드 에 필요 한 돌 수 를 찾 을 수 있 습 니 다. 먼저 각 잎 노드 에 필요 한 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
", ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.