1961: [USACO 2022 US Open Contest Bronze] Problem 2. Counting Liars

文件提交:无需freopen 内存限制:256 MB 时间限制:2.000 S
评测方式:普通裁判 命题人:
提交:2 解决:2

题目描述

Bessie the cow is hiding somewhere along the number line. Each of Farmer John's N other cows (1≤N≤1000) have a piece of information to share: the i-th cow either says that Bessie is hiding at some location less than or equal to pi , or that Bessie is hiding at some location greater than or equal to pi (0≤pi≤109). Unfortunately, it is possible that no hiding location is consistent with the answers of all of the cows, meaning that not all of the cows are telling the truth. Count the minimum number of cows that must be lying.

输入

The first line contains N. The next N lines each contain either L or G, followed by an integer pi . L means that the i-th cow says that Bessie's hiding location is less than or equal to pi, and G means that i-th cow says that Bessie's hiding location is greater than or equal to pi.

输出

The minimum number of cows that must be lying.

样例输入

2
G 3
L 5

样例输出

0

提示

It is possible that no cow is lying.

来源/分类