自学内容网 自学内容网

L2-020 功夫传人 - java

L2-020 功夫传人


时间限制
400 ms
内存限制
64 MB


题目描述:

一门武功能否传承久远并被发扬光大,是要看缘分的。一般来说,师傅传授给徒弟的武功总要打个折扣,于是越往后传,弟子们的功夫就越弱…… 直到某一支的某一代突然出现一个天分特别高的弟子(或者是吃到了灵丹、挖到了特别的秘笈),会将功夫的威力一下子放大N倍 —— 我们称这种弟子为“得道者”。

这里我们来考察某一位祖师爷门下的徒子徒孙家谱:假设家谱中的每个人只有1位师傅(除了祖师爷没有师傅);每位师傅可以带很多徒弟;并且假设辈分严格有序,即祖师爷这门武功的每个第i代传人只能在第i-1代传人中拜1个师傅。我们假设已知祖师爷的功力值为Z,每向下传承一代,就会减弱r%,除非某一代弟子得道。现给出师门谱系关系,要求你算出所有得道者的功力总值。

输入格式:
输入在第一行给出3个正整数,分别是: N ( ≤ 10 ) N( \le 10) N10——整个师门的总人数(于是每个人从 0 0 0 N − 1 N−1 N1编号,祖师爷的编号为 0 0 0); Z Z Z——祖师爷的功力值(不一定是整数,但起码是正数); r r r ——每传一代功夫所打的折扣百分比值(不超过 100 100 100的正数)。接下来有 N N N行,第 i i i ( i = 0 , ⋯   , N − 1 ) (i=0, \cdots, N−1) i=0,,N1描述编号为i的人所传的徒弟,格式为:

K i I D [ 1 ] I D [ 2 ] ⋯ I D [ K i ] K_{i} ID[1] ID[2] \cdots ID[K_{i}] KiID[1]ID[2]ID[Ki]

其中 K i K_{i} Ki 是徒弟的个数,后面跟的是各位徒弟的编号,数字间以空格间隔。 K i K_{i} Ki 为零表示这是一位得道者,这时后面跟的一个数字表示其武功被放大的倍数。

输出格式:
在一行中输出所有得道者的功力总值,只保留其整数部分。题目保证输入和正确的输出都不超过 1 0 10 10^{10} 1010

输入样例:
10 18.0 1.00
3 2 3 5
1 9
1 4
1 7
0 7
2 6 1
1 8
0 9
0 4
0 3

输出样例:
404


给定n个人的徒弟或当前这位得道者武功被放大的倍数。
求所有得道者的功力总值。


emmmmmmm

通过搜索建立师门所有人的关系

然后判断当前这人是否为得道者

  • 是得道者,则计算他们功力值总和
  • 不是得道者, 则递归他的弟子

注: java不知道为什么dfs会出现返回非零,bfs不会


import java.io.*;
import java.util.*;

public class Main
{
static int N = (int) 1e5 + 10;
static double shu[] = new double[N];
static ArrayList<Integer> mp[] = new ArrayList[N + 10];

static void bfs(double z, double r)
{
LinkedList<edge> li = new LinkedList<edge>();
li.add(new edge(0, z));

double ans = 0;
while (li.size() > 0)
{
edge t = li.poll();
int id = t.id;
z = t.z;
if (mp[id].size() == 0)
ans += z * shu[id];

for (int i : mp[id])
li.add(new edge(i, z * (1 - r / 100)));
}
out.println((int) (ans));
}

public static void main(String[] args) throws IOException
{
int n = sc.nextInt();
double z = sc.nextDouble();
double r = sc.nextDouble();

for (int i = 0; i < n; i++)
{
mp[i] = new ArrayList<Integer>();

int k = sc.nextInt();
if (k == 0)
shu[i] = sc.nextDouble();
else
{
while (k-- > 0)
{
int id = sc.nextInt();
mp[i].add(id);
}
}
}

bfs(z, r);

out.flush();
out.close();
}

static class edge
{
int id;
double z;

public edge(int id, double z)
{
this.id = id;
this.z = z;
}
}

static InputReader sc = new InputReader();
static PrintWriter out = new PrintWriter(System.out);

static class InputReader
{
private InputStream inputStream = System.in;
private byte[] buf = new byte[100000];
private int curChar;
private int numChars;

public int getchar()
{
if (numChars == -1)
throw new InputMismatchException();
if (curChar >= numChars)
{
curChar = 0;
try
{
numChars = inputStream.read(buf);
} catch (IOException e)
{
throw new InputMismatchException();
}
if (numChars <= 0)
return -1;
}
return buf[curChar++];
}

public int nextInt()
{
int a = 0, b = 1;
int c = getchar();
while (c < '0' || c > '9')
{
if (c == '-')
{
b = -1;
}
c = getchar();
}
while (c >= '0' && c <= '9')
{
a = (a << 1) + (a << 3) + (c ^ 48);
c = getchar();
}
return a * b;
}

public double nextDouble()
{
int c = getchar();
while (c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1)
c = getchar();
int sgn = 1;
if (c == '-')
{
sgn = -1;
c = getchar();
}
double res = 0;
while (!(c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1) && c != '.')
{
if (c == 'e' || c == 'E')
return res * Math.pow(10, nextInt());
if (c < '0' || c > '9')
throw new InputMismatchException();
res *= 10;
res += c - '0';
c = getchar();
}
if (c == '.')
{
c = getchar();
double m = 1;
while (!(c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1))
{
if (c == 'e' || c == 'E')
return res * Math.pow(10, nextInt());
if (c < '0' || c > '9')
throw new InputMismatchException();
m /= 10;
res += (c - '0') * m;
c = getchar();
}
}
return res * sgn;
}

}

}


ArrayList
ArrayList

LinkedList

arraylist和linkedlist的区别
arraylist和linkedlist的区别

dfs
dfs

bfs
bfs


如果有说错的 或者 不懂的 尽管提 嘻嘻

一起进步!!!


闪现


原文地址:https://blog.csdn.net/weixin_52136008/article/details/139347616

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!