{"raw_statement":[{"iden":"problem statement","content":"We have a deck consisting of $N$ cards. Each card has an integer written on it. The integer on the $i$\\-th card from the top is $a_i$.\nTwo people X and Y will play a game using this deck. Initially, X has a card with $Z$ written on it in his hand, and Y has a card with $W$ written on it in his hand. Then, starting from X, they will alternately perform the following action:\n\n*   Draw some number of cards from the top of the deck. Then, discard the card in his hand and keep the last drawn card instead. Here, at least one card must be drawn.\n\nThe game ends when there is no more card in the deck. The score of the game is the absolute difference of the integers written on the cards in the two players' hand.\nX will play the game so that the score will be maximized, and Y will play the game so that the score will be minimized. What will be the score of the game?"},{"iden":"constraints","content":"*   All input values are integers.\n*   $1 \\leq N \\leq 2000$\n*   $1 \\leq Z, W, a_i \\leq 10^9$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$ $Z$ $W$\n$a_1$ $a_2$ $...$ $a_N$"},{"iden":"sample input 1","content":"3 100 100\n10 1000 100"},{"iden":"sample output 1","content":"900\n\nIf X draws two cards first, Y will draw the last card, and the score will be $|1000 - 100| = 900$."},{"iden":"sample input 2","content":"3 100 1000\n10 100 100"},{"iden":"sample output 2","content":"900\n\nIf X draws all the cards first, the score will be $|1000 - 100| = 900$."},{"iden":"sample input 3","content":"5 1 1\n1 1 1 1 1"},{"iden":"sample output 3","content":"0"},{"iden":"sample input 4","content":"1 1 1\n1000000000"},{"iden":"sample output 4","content":"999999999"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}