CF48E.Ivan the Fool VS Gorynych the Dragon

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Once upon a time in a kingdom far, far away… Okay, let’s start at the point where Ivan the Fool met Gorynych the Dragon. Ivan took out his magic sword and the battle began. First Gorynych had hh heads and tt tails. With each strike of the sword Ivan can either cut off several heads (from 11 to nn , but not more than Gorynych has at the moment), or several tails (from 11 to mm , but not more than Gorynych has at the moment). At the same time, horrible though it seems, Gorynych the Dragon can also grow new heads and tails. And the number of growing heads and tails is determined uniquely by the number of heads or tails cut by the current strike. When the total number of heads and tails exceeds RR , Gorynych the Dragon strikes its final blow and destroys Ivan the Fool. That’s why Ivan aims to cut off all the dragon’s heads and tails as quickly as possible and win. The events can also develop in a third way: neither of the opponents can win over the other one and they will continue fighting forever.

The tale goes like this; easy to say, hard to do. Your task is to write a program that will determine the battle’s outcome. Consider that Ivan strikes consecutively. After each blow Gorynych grows a number of new heads and tails depending on the number of cut ones. Gorynych the Dragon is defeated if after the blow he loses all his heads and tails and can’t grow new ones. Ivan fights in the optimal way (fools are lucky), i.e.

  • if Ivan can win, he wins having struck the least number of blows;
  • if it is impossible to defeat Gorynych, but is possible to resist him for an infinitely long period of time, then that’s the strategy Ivan chooses;
  • if Gorynych wins in any case, Ivan aims to resist him for as long as possible.

输入格式

The first line contains three integers hh , tt and RR ( 0<=h,t,R<=2000<=h,t,R<=200 , 0<h+t<=R0<h+t<=R ) which represent the initial numbers of Gorynych’s heads and tails and the largest total number of heads and tails with which Gorynych the Dragon does not yet attack. The next line contains integer nn ( 1<=n<=2001<=n<=200 ). The next nn contain pairs of non-negative numbers " hih_{i} tit_{i} " which represent the number of heads and the number of tails correspondingly, that will grow if Gorynych has ii heads ( 1<=i<=n1<=i<=n ) cut. The next line contains an integer mm ( 1<=m<=2001<=m<=200 ) and then — the description of Gorynych’s behavior when his tails are cut off in the format identical to the one described above. All the numbers in the input file do not exceed 200200 .

输出格式

Print "Ivan" (without quotes) in the first line if Ivan wins, or "Zmey" (that means a dragon in Russian) if Gorynych the Dragon wins. In the second line print a single integer which represents the number of blows Ivan makes. If the battle will continue forever, print in the first line "Draw".

输入输出样例

  • 输入#1

    2 2 4
    2
    1 0
    0 1
    3
    0 1
    0 1
    0 0
    

    输出#1

    Ivan
    2
    
  • 输入#2

    2 2 4
    1
    0 1
    1
    1 0
    

    输出#2

    Draw
    
  • 输入#3

    2 2 5
    1
    1 1
    1
    3 0
    

    输出#3

    Zmey
    2
    
首页