1090 공급 망 에서 가장 높 은 가격 (25 점) [dfs]

2762 단어 PAT데이터 구조
공급 망 은 소매 업 체 (소매상), 유통 업 체 (대리 판매상) 및 공급 업 체 (공급 업 체) 로 구 성 된 네트워크 입 니 다.
Starting from one root supplier, everyone on the chain buys products from one's supplier in a price P and sell or distribute them in a price that is r% higher than P. It is assumed that each member in the supply chain has exactly one supplier except the root supplier, and there is no supply cycle.
Now given a supply chain, you are supposed to tell the highest price we can expect from some retailers.
Input Specification:
Each input file contains one test case. For each case, The first line contains three positive numbers: N (≤10​5​​), the total number of the members in the supply chain (and hence they are numbered from 0 to N−1); P, the price given by the root supplier; and r, the percentage rate of price increment for each distributor or retailer. Then the next line contains N numbers, each number S​i​​ is the index of the supplier for the i-th member. S​root​​ for the root supplier is defined to be −1. All the numbers in a line are separated by a space.
Output Specification:
For each test case, print in one line the highest price we can expect from some retailers, accurate up to 2 decimal places, and the number of retailers that sell at the highest price. There must be one space between the two numbers. It is guaranteed that the price will not exceed 10​10​​.
Sample Input:
9 1.80 1.00
1 5 4 4 -1 4 5 3 6

Sample Output:
1.85 2

제목: n 개의 공급 업 체 가 있 고 뿌리 공급 업 체 의 가격 은 P 이 며 하위 노드 공급 업 체 에 나 누 어 주 려 면 r 가 더 많 아야 합 니 다. -- 공급 업 체 최고 판매 가 는 얼마 인가.n 개의 공급 업 체 를 입력 하고 아래 표 시 는 0 에서 n - 1 까지 이 며, i 번 째 구성원 의 공급 업 체 색인 번 호 를 표시 합 니 다. - 1 은 루트 공급 업 체 입 니 다.
9 1.80 1.00
1 5 4 4 -1 4 5 3 6
//0  1  2  3  4  5  6  7  8
//1  5  4  4 -1  4  5  3  6
// 0        1, 1        5, 2        4,    


문제 풀이 사고: 실질 적 으로 나무의 역력 (최대 몇 층) 이다.입력 데이터 처리: 부모 노드 와 하위 노드 를 2 차원 배열 로 저장 합 니 다. 하위 노드 라면 v [father]. pushback (i), - 1 이면 뿌리 노드 입 니 다.깊이 검색: 뿌리 노드 에서 아래로 깊이 검색 하고 잎 노드 에 도착 하면 차원 이 max depth 보다 크 면 바 꿉 니 다. 같 으 면 max num + 입 니 다. 잎 노드 가 아니면 서브 노드 를 계속 깊이 검색 합 니 다. 서브 노드 를 깊이 검색 하려 면 현재 노드 의 depth 를 하나 더 추가 해 야 합 니 다.
#include
#include
#include
using namespace std;

int maxdepth,maxnum,n;
vectorv[100010];//           :                  
void dfs(int root,int depth)
{
	if(v[root].size()==0)
	{
		if(maxdepth==depth)
		{
			maxnum++;
		}
		else if(maxdepth

좋은 웹페이지 즐겨찾기