CF1105E.Helping Hiasat
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Hiasat registered a new account in NeckoForces and when his friends found out about that, each one of them asked to use his name as Hiasat's handle.
Luckily for Hiasat, he can change his handle in some points in time. Also he knows the exact moments friends will visit his profile page. Formally, you are given a sequence of events of two types:
- 1 — Hiasat can change his handle.
- 2 s — friend s visits Hiasat's profile.
The friend s will be happy, if each time he visits Hiasat's profile his handle would be s .
Hiasat asks you to help him, find the maximum possible number of happy friends he can get.
输入格式
The first line contains two integers n and m ( 1≤n≤105,1≤m≤40 ) — the number of events and the number of friends.
Then n lines follow, each denoting an event of one of two types:
- 1 — Hiasat can change his handle.
- 2 s — friend s ( 1≤∣s∣≤40 ) visits Hiasat's profile.
It's guaranteed, that each friend's name consists only of lowercase Latin letters.
It's guaranteed, that the first event is always of the first type and each friend will visit Hiasat's profile at least once.
输出格式
Print a single integer — the maximum number of happy friends.
输入输出样例
输入#1
5 3 1 2 motarack 2 mike 1 2 light
输出#1
2
输入#2
4 3 1 2 alice 2 bob 2 tanyaromanova
输出#2
1
说明/提示
In the first example, the best way is to change the handle to the "motarack" in the first event and to the "light" in the fourth event. This way, "motarack" and "light" will be happy, but "mike" will not.
In the second example, you can choose either "alice", "bob" or "tanyaromanova" and only that friend will be happy.