Family Photos

题意翻译

有 $n$ 对照片,两个人 $A$ 和 $B$ 轮流取。每对照片有四个值 $a_1,b_1,a_2,b_2$,表示第一张和第二张对 $A$ 和 $B$ 来说的喜悦值。轮到一个人时,她可以选择不取,如果连续两轮中 $A$ 和 $B$ 都选择不取那么游戏结束。双方都希望(自己的喜悦值 - 对方的喜悦值)尽量大。假设两个人都采用最佳策略,求最后 $A$ 的喜悦值和 $B$ 的喜悦值的差值。

题目描述

Alice and Bonnie are sisters, but they don't like each other very much. So when some old family photos were found in the attic, they started to argue about who should receive which photos. In the end, they decided that they would take turns picking photos. Alice goes first. There are $ n $ stacks of photos. Each stack contains exactly two photos. In each turn, a player may take only a photo from the top of one of the stacks. Each photo is described by two non-negative integers $ a $ and $ b $ , indicating that it is worth $ a $ units of happiness to Alice and $ b $ units of happiness to Bonnie. Values of $ a $ and $ b $ might differ for different photos. It's allowed to pass instead of taking a photo. The game ends when all photos are taken or both players pass consecutively. The players don't act to maximize their own happiness. Instead, each player acts to maximize the amount by which her happiness exceeds her sister's. Assuming both players play optimal, find the difference between Alice's and Bonnie's happiness. That is, if there's a perfectly-played game such that Alice has $ x $ happiness and Bonnie has $ y $ happiness at the end, you should print $ x-y $ .

输入输出格式

输入格式


The first line of input contains a single integer $ n $ ( $ 1<=n<=100000 $ ) — the number of two-photo stacks. Then follow $ n $ lines, each describing one of the stacks. A stack is described by four space-separated non-negative integers $ a_{1} $ , $ b_{1} $ , $ a_{2} $ and $ b_{2} $ , each not exceeding $ 10^{9} $ . $ a_{1} $ and $ b_{1} $ describe the top photo in the stack, while $ a_{2} $ and $ b_{2} $ describe the bottom photo in the stack.

输出格式


Output a single integer: the difference between Alice's and Bonnie's happiness if both play optimally.

输入输出样例

输入样例 #1

2
12 3 4 7
1 15 9 1

输出样例 #1

1

输入样例 #2

2
5 4 8 8
4 12 14 0

输出样例 #2

4

输入样例 #3

1
0 10 0 10

输出样例 #3

-10