lower_bound: Spider's Web (CF#133)

Spider's Web
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Paw the Spider is making a web. Web-making is a real art, Paw has been learning to do it his whole life. Let's consider the structure of the web.

There are n main threads going from the center of the web. All main threads are located in one plane and divide it inton equal infinite sectors. The sectors are indexed from 1 to n in the clockwise direction. Sectors i andi + 1 are adjacent for every i, 1 ≤ i < n. In addition, sectors 1 andn are also adjacent.

Some sectors have bridge threads. Each bridge connects the two main threads that make up this sector. The points at which the bridge is attached to the main threads will be calledattachment points. Both attachment points of a bridge are at the same distance from the center of the web. At each attachment point exactly one bridge is attached. The bridges areadjacent if they are in the same sector, and there are no other bridges between them.

A cell of the web is a trapezoid, which is located in one of the sectors and is bounded by two main threads and two adjacent bridges. You can see that the sides of the cell may have the attachment points of bridges from adjacent sectors. If the number of attachment points on one side of the cell is not equal to the number of attachment points on the other side, it creates an imbalance of pulling forces on this cell and this may eventually destroy the entire web. We'll call such a cell unstable. The perfect web does not contain unstable cells.

Unstable cells are marked red in the figure. Stable cells are marked green.

Paw the Spider isn't a skillful webmaker yet, he is only learning to make perfect webs. Help Paw to determine the number of unstable cells in the web he has just spun.

Input

The first line contains integer n (3 ≤ n ≤ 1000) — the number of main threads.

The i-th of following n lines describe the bridges located in the i-th sector: first it contains integer ki (1 ≤ ki ≤ 105) equal to the number of bridges in the given sector. Then follow ki different integers pij (1 ≤ pij ≤ 105; 1 ≤ j ≤ ki). Number pij equals the distance from the attachment points of thej-th bridge of the i-th sector to the center of the web.

It is guaranteed that any two bridges between adjacent sectors are attached at a different distance from the center of the web. It is guaranteed that the total number of the bridges doesn't exceed105.

Output

Print a single integer — the number of unstable cells in Paw the Spider's web.

Sample test(s)
Input
7
3 1 6 7
4 3 5 2 9
2 8 1
4 3 7 6 4
3 2 5 9
3 6 3 8
3 4 2 9
Output
6


#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <vector>

using namespace std;

int main(){
    int n, m;
    vector<int> v[1010];
    scanf("%d", &n);
    for(int i = 0; i < n; i ++){
        scanf("%d", &m);
        while(m --){
            int a;
            scanf("%d", &a);
            v[i].push_back(a);
        }
        sort(v[i].begin(), v[i].end());
    }
    int ans = 0;
    for(int i = 0; i < n; i ++){
        int last = (i - 1) < 0 ? (n - 1) : i - 1;
        int next = (i + 1) % n;
        for(int j = 1; j < v[i].size(); j ++){
            int low = v[i][j-1];
            int high = v[i][j];
            int lastNum = lower_bound(v[last].begin(), v[last].end(), high) - lower_bound(v[last].begin(), v[last].end(), low);
            int nextNum = lower_bound(v[next].begin(), v[next].end(), high) - lower_bound(v[next].begin(), v[next].end(), low);
            ans += (lastNum != nextNum);
        }
    }
    printf("%d\n", ans);
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值