ZOJ 3868 - Earthstone: Easy Version

网友投稿 252 2022-08-30

ZOJ 3868 - Earthstone: Easy Version

3868 - Earthstone: Easy Version

Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu

Submit  ​​Status​​​  ​​​Practice​​​  ​​​ZOJ 3867​​

Description

Earthstone is a famous online card game created by Lizard Entertainment. It is a collectible card game that revolves around turn-based matches between two opponents. Players start the game with a substantial collection of basic cards, but can gain rarer and more powerful cards through purchasing packs of additional cards, or as rewards for competing in the arena. Card packs can be purchased with gold, an in-game currency rewarded for completing random daily quests and winning matches, or by using real money in the in-game store.

Each Earthstone battle is a one on one turn-based match between two opponents. During a player's turn, he can choose to play any of his cards and command the minions to attack targets. Those played cards will be placed on the table as they are 'summoned' as minions. Each card has two basic attributes:

Attack Ai: If a minion attacks a character or was attacked, it will deal AiHealth Hi: The minion has Hi

Given two minions, please calculate the result if the first minion attacked the second one.

Input

There are multiple test cases. The first line of input contains an integer T

There are four integers A1, H1, A2 and H2 (0 <= A1, A2 <=10, 1 <= H1, H2

Output

For each test case, output "Invalid" (without quotes) if the first minion cannot attack, otherwise output the minions attributes as the format in input. If the minion is killed, output "Discard" instead (without quotes).

Sample Input

33 3 2 4 3 2 2 5 0 3 2 2

Sample Output

3 1 2 1Discard 2 2 Invalid

似乎看到了熟悉的游戏……飘过~

#include #include #include #include #include typedef long long LL;using namespace std;int main(){ int T,a1,h1,a2,h2; cin>>T; while(T--) { cin>>a1>>h1>>a2>>h2; if(a1==0) { cout<<"Invalid"<

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:阿曼主帅:中国队只有3分,积分配不上他们的表现!(阿曼男足实力)
下一篇:Train Seats Reservation
相关文章

 发表评论

暂时没有评论,来抢沙发吧~