#abc228b. B - Takahashi's Secret
B - Takahashi's Secret
Score : points
问题描述
Takahashi 有 个朋友。他们的昵称分别是:朋友 、朋友 、、朋友 。
有一天,Takahashi 不小心让他的一个朋友——朋友 知道了他的一个羞耻的秘密。
对于每个 ,当朋友 知道了这个秘密后,若朋友 还未知道这个秘密,他/她将会把这个秘密分享给朋友 。
最终会有多少个 Takahashi 的朋友知道这个秘密?
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
Takahashi has friends. They have nicknames: Friend , Friend , , Friend .
One day, Takahashi accidentally let one of his friends, Friend , learn his shameful secret.
For each , when Friend learns the secret, he/she will share it with Friend , if Friend has not already learned it.
How many of Takahashi's friends will learn the secret in the end?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
4 2
3 1 1 2
Sample Output 1
3
Takahashi's secret will be learned by Friend , Friend , and Friend , as follows.
- One day, Takahashi let Friend learn the secret.
- Friend shares it with Friend .
- Friend shares it with Friend .
In the end, three of his friends learn the secret, so we print .
Sample Input 2
20 12
7 11 10 1 7 20 14 2 17 3 2 5 19 20 8 14 18 2 10 10
Sample Output 2
7
update @ 2024/3/10 09:58:16