1090 공급 망 에서 가장 높 은 가격 (25 점) [dfs]
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 (≤105), 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 Si is the index of the supplier for the i-th member. Sroot 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 1010.
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT A 1049. Counting Ones (30)제목 The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal fo...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.