CF69D.Dot

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Anton and Dasha like to play different games during breaks on checkered paper. By the 11th grade they managed to play all the games of this type and asked Vova the programmer to come up with a new game. Vova suggested to them to play a game under the code name "dot" with the following rules:

  • On the checkered paper a coordinate system is drawn. A dot is initially put in the position (x,y)(x,y) .
  • A move is shifting a dot to one of the pre-selected vectors. Also each player can once per game symmetrically reflect a dot relatively to the line y=xy=x .
  • Anton and Dasha take turns. Anton goes first.
  • The player after whose move the distance from the dot to the coordinates' origin exceeds dd , loses.

Help them to determine the winner.

输入格式

The first line of the input file contains 4 integers xx , yy , nn , dd ( 200<=x,y<=200,1<=d<=200,1<=n<=20-200<=x,y<=200,1<=d<=200,1<=n<=20 ) — the initial coordinates of the dot, the distance dd and the number of vectors. It is guaranteed that the initial dot is at the distance less than dd from the origin of the coordinates. The following nn lines each contain two non-negative numbers xix_{i} and yiy_{i} ( 0<=xi,yi<=2000<=x_{i},y_{i}<=200 ) — the coordinates of the i-th vector. It is guaranteed that all the vectors are nonzero and different.

输出格式

You should print "Anton", if the winner is Anton in case of both players play the game optimally, and "Dasha" otherwise.

输入输出样例

  • 输入#1

    0 0 2 3
    1 1
    1 2
    

    输出#1

    Anton
  • 输入#2

    0 0 2 4
    1 1
    1 2
    

    输出#2

    Dasha

说明/提示

In the first test, Anton goes to the vector (1;2), and Dasha loses. In the second test Dasha with her first move shifts the dot so that its coordinates are (2;3), and Anton loses, as he has the only possible move — to reflect relatively to the line y=xy=x . Dasha will respond to it with the same move and return the dot in position (2;3).

首页