printРабочее место участника

printЗадачи

1829. Dance

Ограничения: время – 1s/2s, память – 64MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

There are `N` boys and `N` girls at a dance party. We have measured their heights. Each boy will only dance with a girl and each girl will only dance with a boy. Everyone will dance with at most one partner. Each boy either wants to dance with a girl who is taller than him or with a girl who is shorter than him. Analogously, each girl either wants to dance with a boy who is taller than her or with a boy who is shorter than her. Boys and girls who are equally tall never want to dance with each other.
Respecting everyone's wishes, determine the maximum number of dancing pairs that can be achieved.
The first line of input contains the positive integer `N` (`1\ ≤\ N\ ≤\ 100\ 000`). The second line of input contains `N` integers whose absolute values are between 1500 and 2500, inclusive. Their absolute values represent the height of each of the boys in millimetres. Positive height values indicate boys who want to dance with girls taller than themselves, while negative height values indicate boys who want to dance with girls shorter than themselves.
The third line of input contains `N` integers whose absolute values are between 1500 and 2500, inclusive. Their absolute values represent the height of each of the girls in millimetres. Positive height values indicate girls who want to dance with boys taller than themselves, while negative height values indicate girls who want to dance with boys shorter than themselves.
The only line of output must contain the maximum number of dancing pairs.

Sample Input #1

1 
-1800 
1800 

Sample Output #1

0 

Sample Input #2

1 
1700 
-1800 

Sample Output #2

1 

Sample Input #3

2 
-1800 -2200 
1900 1700 

Sample Output #3

2
Source: COCI 2011/2012
loading