{"raw_statement":[{"iden":"problem statement","content":"There are $N$ dishes of cuisine placed in front of Takahashi and Aoki. For convenience, we call these dishes Dish $1$, Dish $2$, ..., Dish $N$.\nWhen Takahashi eats Dish $i$, he earns $A_i$ points of _happiness_; when Aoki eats Dish $i$, she earns $B_i$ points of happiness.\nStarting from Takahashi, they alternately choose one dish and eat it, until there is no more dish to eat. Here, both of them choose dishes so that the following value is maximized: \"the sum of the happiness he/she will earn in the end\" minus \"the sum of the happiness the other person will earn in the end\".\nFind the value: \"the sum of the happiness Takahashi earns in the end\" minus \"the sum of the happiness Aoki earns in the end\"."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 10^5$\n*   $1 \\leq A_i \\leq 10^9$\n*   $1 \\leq B_i \\leq 10^9$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$A_1$ $B_1$\n$:$\n$A_N$ $B_N$"},{"iden":"sample input 1","content":"3\n10 10\n20 20\n30 30"},{"iden":"sample output 1","content":"20\n\nIn this sample, both of them earns $10$ points of happiness by eating Dish $1$, $20$ points by eating Dish $2$, and $30$ points by eating Dish $3$.\nIn this case, since Takahashi and Aoki have the same \"taste\", each time they will choose the dish with which they can earn the greatest happiness. Thus, first Takahashi will choose Dish $3$, then Aoki will choose Dish $2$, and finally Takahashi will choose Dish $1$, so the answer is $(30 + 10) - 20 = 20$."},{"iden":"sample input 2","content":"3\n20 10\n20 20\n20 30"},{"iden":"sample output 2","content":"20\n\nIn this sample, Takahashi earns $20$ points of happiness by eating any one of the dishes $1, 2$ and $3$, but Aoki earns $10$ points of happiness by eating Dish $1$, $20$ points by eating Dish $2$, and $30$ points by eating Dish $3$.\nIn this case, since only Aoki has likes and dislikes, each time they will choose the dish with which Aoki can earn the greatest happiness. Thus, first Takahashi will choose Dish $3$, then Aoki will choose Dish $2$, and finally Takahashi will choose Dish $1$, so the answer is $(20 + 20) - 20 = 20$."},{"iden":"sample input 3","content":"6\n1 1000000000\n1 1000000000\n1 1000000000\n1 1000000000\n1 1000000000\n1 1000000000"},{"iden":"sample output 3","content":"\\-2999999997\n\nNote that the answer may not fit into a $32$\\-bit integer."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}