目录

  • 回顾
  • 补充
    • 命名规范
  • 题目描述
  • 我的代码
  • 测试用例

回顾

本题是北大程序设计MOOC的课程大作业。老实说,如果当作一个小项目来看待的话,这道题的代码量不是很大,不过难得的是,这道题不涉及任何C++以外的操作系统、计算机网络、各种框架的使用等知识。因此,在正式学习优秀的开源项目之前,用这道题来热热身,找一找撸C++代码的感觉,还是很合适的。

首先反思的一点是关于类的设计,这个可以说是OOP编程的重点。要做好一个项目,一定要在前期花大量的时间来设计类,定义接口,这样会给自己省去很多麻烦。这次就是因为前期没有好好思考清楚,甚至没认真读完整个题目就开始凭感觉去写,前面给自己挖坑,后面再去修改,花了更多的精力,而且代码中也存在着可以优化的地方。所幸代码量不算很大,大概用了一天时间来coding,然后又摸鱼半天来debug。

另外,对于这种偏工程性的题目,而不是leetcode那种百行左右基本就可以搞定的算法题来说,最好先看一下测试用例或者边写边测试。写完一个功能测试一下,可以给最后的debug剩很多时间。

这道题的输出比较多,可以使用一些Linux命令行下的文件比较工具,比如diff。当然也可以使用一些在线的文本比较网站,会更容易操作一些。

补充

这两天在学习java,java是一种比C++更纯粹的面向对象语言。很多人学习的时候,都不注意一些例如:命名规范、注释这样的细节(比如我下面的代码Orz),觉得代码能跑就行,其实开发中是要养成这些好习惯的,这样能提高代码阅读性,方便自己,方便别人。

命名规范

类型 要求
包名 多单词组成时所有字母都小写 ,如xxxyyyzzz
类名、接口名 多单词组成时,所有单词的首字母大写 ,如XxxYyyZzz
变量名、方法名 第一个单词首字母小写,后面单词首字母大写,如xxxYyyZzz
常量名 所有字母都大写。多单词时每个单词用下划线连接 XXX_YYY_ZZZ

题目描述

加粗的部分是一些细节,需要注意,按照题中所给的要求输出。
魔兽世界的西面是红魔军的司令部,东面是蓝魔军的司令部。两个司令部之间是依次排列的若干城市,城市从西向东依次编号为1,2,3 … N ( N <= 20)。红魔军的司令部算作编号为0的城市,蓝魔军的司令部算作编号为N+1的城市。司令部有生命元,用于制造武士。

两军的司令部都会制造武士。武士一共有dragon 、ninja、iceman、lion、wolf 五种。每种武士都有编号、生命值、攻击力这三种属性。

双方的武士编号都是从1开始计算。红方制造出来的第n 个武士,编号就是n。同样,蓝方制造出来的第n 个武士,编号也是n。

武士在刚降生的时候有一个初始的生命值,生命值在战斗中会发生变化,如果生命值减少到0(生命值变为负数时应当做变为0处理),则武士死亡(消失)。

武士可以拥有武器。武器有三种,sword, bomb,和arrow,编号分别为0,1,2。

sword的攻击力是使用者当前攻击力的20%(去尾取整)。

bomb的攻击力是使用者当前攻击力的40%(去尾取整),但是也会导致使用者受到攻击,对使用者的攻击力是对敌人取整后的攻击力的1/2(去尾取整)。Bomb一旦使用就没了。

arrow的攻击力是使用者当前攻击力的30%(去尾取整)。一个arrow用两次就没了。

武士降生后就朝对方司令部走,在经过的城市如果遇到敌人(同一时刻每个城市最多只可能有1个蓝武士和一个红武士),就会发生战斗。战斗的规则是:

在奇数编号城市,红武士先发起攻击

在偶数编号城市,蓝武士先发起攻击

战斗开始前,双方先对自己的武器排好使用顺序,然后再一件一件地按顺序使用。编号小的武器,排在前面。若有多支arrow,用过的排在前面。排好序后,攻击者按此排序依次对敌人一件一件地使用武器。如果一种武器有多件,那就都要用上。每使用一件武器,被攻击者生命值要减去武器攻击力。如果任何一方生命值减为0或小于0即为死去。有一方死去,则战斗结束。

双方轮流使用武器,甲用过一件,就轮到乙用。某一方把自己所有的武器都用过一轮后,就从头开始再用一轮。如果某一方没有武器了,那就挨打直到死去或敌人武器用完。武器排序只在战斗前进行,战斗中不会重新排序。

如果双方武器都用完且都还活着,则战斗以平局结束。如果双方都死了,也算平局。

有可能由于武士自身攻击力太低,而导致武器攻击力为0。攻击力为0的武器也要使用。如果战斗中双方的生命值和武器的状态都不再发生变化,则战斗结束,算平局。

战斗的胜方获得对方手里的武器。武士手里武器总数不超过10件。缴获武器时,按照武器种类编号从小到大缴获。如果有多件arrow,优先缴获没用过的。

如果战斗开始前双方都没有武器,则战斗视为平局。如果先攻击方没有武器,则由后攻击方攻击。

不同的武士有不同的特点。

编号为n的dragon降生时即获得编号为n%3 的武器。dragon在战斗结束后,如果还没有战死,就会欢呼。

编号为n的ninjia降生时即获得编号为n%3 和(n+1)%3的武器。ninja 使用bomb不会让自己受伤。

编号为n的iceman降生时即获得编号为n%3 的武器。iceman每前进一步,生命值减少10%(减少的量要去尾取整)。

编号为n的lion降生时即获得编号为n%3 的武器。lion 有“忠诚度”这个属性,其初始值等于它降生之后其司令部剩余生命元的数目。每前进一步忠诚度就降低K。忠诚度降至0或0以下,则该lion逃离战场,永远消失。但是已经到达敌人司令部的lion不会逃跑。lion在己方司令部可能逃跑。

wolf降生时没有武器,但是在战斗开始前会抢到敌人编号最小的那种武器。如果敌人有多件这样的武器,则全部抢来。Wolf手里武器也不能超过10件。如果敌人arrow太多没法都抢来,那就先抢没用过的。如果敌人也是wolf,则不抢武器。

以下是不同时间会发生的不同事件:

在每个整点,即每个小时的第0分, 双方的司令部中各有一个武士降生。

红方司令部按照iceman、lion、wolf、ninja、dragon 的顺序制造武士。

蓝方司令部按照lion、dragon、ninja、iceman、wolf 的顺序制造武士。

制造武士需要生命元。

制造一个初始生命值为m 的武士,司令部中的生命元就要减少m 个。

如果司令部中的生命元不足以制造某本该造的武士,那就从此停止制造武士。

在每个小时的第5分,该逃跑的lion就在这一时刻逃跑了。

在每个小时的第10分:所有的武士朝敌人司令部方向前进一步。即从己方司令部走到相邻城市,或从一个城市走到下一个城市。或从和敌军司令部相邻的城市到达敌军司令部。

在每个小时的第35分:在有wolf及其敌人的城市,wolf要抢夺对方的武器。

在每个小时的第40分:在有两个武士的城市,会发生战斗。

在每个小时的第50分,司令部报告它拥有的生命元数量。

在每个小时的第55分,每个武士报告其拥有的武器情况。

武士到达对方司令部后就算完成任务了,从此就呆在那里无所事事。

任何一方的司令部里若是出现了敌人,则认为该司令部已被敌人占领。

任何一方的司令部被敌人占领,则战争结束。战争结束之后就不会发生任何事情了。

给定一个时间,要求你将从0点0分开始到此时间为止的所有事件按顺序输出。事件及其对应的输出样例如下:

  1. 武士降生

输出样例:000:00 blue dragon 1 born

表示在0点0分,编号为1的蓝魔dragon武士降生

如果造出的是lion,那么还要多输出一行,例:

000:00 blue lion 1 born

Its loyalty is 24

表示该lion降生时的忠诚度是24

  1. lion逃跑

输出样例:000:05 blue lion 1 ran away

表示在0点5分,编号为1的蓝魔lion武士逃走

  1. 武士前进到某一城市

输出样例:

000:10 red iceman 1 marched to city 1 with 20 elements and force 30

表示在0点10分,红魔1号武士iceman前进到1号城市,此时他生命值为20,攻击力为30

对于iceman,输出的生命值应该是变化后的数值

  1. wolf抢敌人的武器

000:35 blue wolf 2 took 3 bomb from red dragon 2 in city 4

表示在0点35分,4号城市中,红魔1号武士wolf 抢走蓝魔2号武士dragon 3个bomb。为简单起见,武器不写复数形式

  1. 报告战斗情况

战斗只有3种可能的输出结果:

000:40 red iceman 1 killed blue lion 12 in city 2 remaining 20 elements

表示在0点40分,1号城市中,红魔1号武士iceman 杀死蓝魔12号武士lion后,剩下生命值20

000:40 both red iceman 1 and blue lion 12 died in city 2

注意,把红武士写前面

000:40 both red iceman 1 and blue lion 12 were alive in city 2

注意,把红武士写前面

  1. 武士欢呼

输出样例:003:40 blue dragon 2 yelled in city 4

  1. 武士抵达敌军司令部

输出样例:001:10 red iceman 1 reached blue headquarter with 20 elements and force 30

(此时他生命值为20,攻击力为30)对于iceman,输出的生命值和攻击力应该是变化后的数值

  1. 司令部被占领

输出样例:003:10 blue headquarter was taken

9)司令部报告生命元数量

000:50 100 elements in red headquarter

000:50 120 elements in blue headquarter

表示在0点50分,红方司令部有100个生命元,蓝方有120个

10)武士报告情况

000:55 blue wolf 2 has 2 sword 3 bomb 0 arrow and 7 elements

为简单起见,武器都不写复数形式。elements一律写复数,哪怕只有1个

交代武器情况时,次序依次是:sword,bomb, arrow。

输出事件时:

首先按时间顺序输出;

同一时间发生的事件,按发生地点从西向东依次输出. 武士前进的事件, 算是发生在目的地。

在一次战斗中有可能发生上面的 5 至 6 号事件。这些事件都算同时发生,其时间就是战斗开始时间。一次战斗中的这些事件,序号小的应该先输出。

两个武士同时抵达同一城市,则先输出红武士的前进事件,后输出蓝武士的。

对于同一城市,同一时间发生的事情,先输出红方的,后输出蓝方的。

显然,8号事件发生之前的一瞬间一定发生了7号事件。输出时,这两件事算同一时间发生,但是应先输出7号事件

虽然任何一方的司令部被占领之后,就不会有任何事情发生了。但和司令部被占领同时发生的事件,全都要输出。

输入
第一行是t,代表测试数据组数

每组样例共三行。

第一行,4个整数 M,N,K, T。其含义为:
每个司令部一开始都有M个生命元( 1 <= M <= 100000)
两个司令部之间一共有N个城市( 1 <= N <= 20 )
lion每前进一步,忠诚度就降低K。(0<=K<=100)
要求输出从0时0分开始,到时间T为止(包括T) 的所有事件。T以分钟为单位,0 <= T <= 6000

第二行:五个整数,依次是 dragon 、ninja、iceman、lion、wolf 的初始生命值。它们都大于0小于等于200

第三行:五个整数,依次是 dragon 、ninja、iceman、lion、wolf 的攻击力。它们都大于0小于等于200
输出
对每组数据,先输出一行:

Case n:

如对第一组数据就输出 Case 1:

然后按恰当的顺序和格式输出到时间T为止发生的所有事件。每个事件都以事件发生的时间开头,时间格式是“时: 分”,“时”有三位,“分”有两位。

样例输入

1
20 1 10 400
20 20 30 10 20
5 5 5 5 5

样例输出

Case 1:
000:00 blue lion 1 born
Its loyalty is 10
000:10 blue lion 1 marched to city 1 with 10 elements and force 5
000:50 20 elements in red headquarter
000:50 10 elements in blue headquarter
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:05 blue lion 1 ran away
001:50 20 elements in red headquarter
001:50 10 elements in blue headquarter
002:50 20 elements in red headquarter
002:50 10 elements in blue headquarter
003:50 20 elements in red headquarter
003:50 10 elements in blue headquarter
004:50 20 elements in red headquarter
004:50 10 elements in blue headquarter
005:50 20 elements in red headquarter
005:50 10 elements in blue headquarter

提示
请注意浮点数精度误差问题。OJ上的编译器编译出来的可执行程序,在这方面和你电脑上执行的程序很可能会不一致。5 * 0.3 的结果,有的机器上可能是 15.00000001,去尾取整得到15,有的机器上可能是14.9999999,去尾取整后就变成14。因此,本题不要写 5 * 0.3,要写 5 * 3 / 10。

我的代码

代码在执行效率、类的设计等等方面都还有优化的空间,经测试,可以通过全部测试用例。测试用例为出题老师提供,也附在下面。
代码需要按C11的标准编译,如果使用vscode或者命令行,需要使用如下命令:

g++ -std=c++11 .\filename.cpp -o filename

如果使用DEV等IDE,需要在编译器选项选择中加入-std=c++11,以DEV为例:

代码:

#include<iostream>
#include<stdio.h>
#include<string>
#include<string.h>
#include<vector>
#include<algorithm>
#include<math.h>#define SOLDIER_NUM 5 //武士种类
#define WEAPON_NUM 3 // 武器种类#define DRAGON 0
#define NINJA 1
#define ICEMAN 2
#define LION 3
#define WOLF 4#define RED 0
#define BLUE 1#define SWORD 0
#define BOMB 1
#define ARROW 2using namespace std;class Soldier;
class Dragon;
class Ninja;
class Iceman;
class Lion;
class Wolf;typedef struct{Soldier* p1;//for redSoldier* p2;//for blueint counter;
}City;class MAP{public:City City_list[25];static int City_NUM;MAP(int _City_NUM){City_NUM = _City_NUM;Init();}void Init(){for(int i=0;i<25;i++){City_list[i].p1=NULL;City_list[i].p2=NULL;City_list[i].counter=0;}}int move(int _time);//武士在地图上移动 返回0 for 结束, 1 for 继续void Attack(int hour);//红蓝武士PKvoid Lion_run(int hour);void Print_Soldier(int hour);void Wolf_rob(int hour);void clear();
};class Headquarter{private:int total_soldier;//武士总数int color;// 0 for red, 1 for blueint total_life;//总生命值bool stop_making;int curmaking_index;//当前制造的武士索引号int soldier_num[SOLDIER_NUM];//各类武士的数量Soldier* psoldier;//指向当前创造的武士int location;// 0 for red,n+1 for blue
public:int making_list[SOLDIER_NUM];//武士制作顺序Headquarter(int _color,int _total_life){total_soldier = 0;color = _color;total_life = _total_life;stop_making = false;curmaking_index = 0;if(color == RED) location = 0;else location = MAP::City_NUM + 1;memset(soldier_num,0,sizeof(soldier_num));}bool Make_soldier(int hour,MAP *pmap);//制造一个武士void Print_total_life(int hour){if(color == RED) printf("%03d:50 %d elements in red headquarter\n",hour,total_life);else printf("%03d:50 %d elements in blue headquarter\n",hour,total_life);}friend class Soldier;//声明友元friend class Dragon;friend class Ninja;friend class Iceman;friend class Lion;friend class Wolf;
};class Weapon{public:int kind;int force;//武器攻击力int HP;//static int InitForce[WEAPON_NUM];static const char* Name_of_weapon[WEAPON_NUM];static int HP_of_weapon[WEAPON_NUM];//武器耐久Weapon(int _kind):kind(_kind){HP = Weapon::HP_of_weapon[kind];}
};bool mysort(const Weapon & A,const Weapon & B){//弓箭耐久低的排在前面if(A.kind != B.kind) return A.kind < B.kind;if(A.kind == ARROW){return A.HP < B.HP;}return true;
}bool mysort_high(const Weapon & A,const Weapon &B){//耐久高的排前面if(A.kind != B.kind) return A.kind < B.kind;if(A.kind == ARROW){return A.HP > B.HP;}return true;
}class Soldier{protected:Headquarter *pHeadquarter;//表明阵营int No;//编号int kind;//类型 0 for dragon,1 for ninja, 2 for iceman, 3 for lion, 4 for wolfbool alive;int location;//位置int life;int Weapon_num;//拥有的武器数量int curWeapon_index;//当前使用的武器序号vector<Weapon> Weapon_list;
public:static const char* Name_of_soldier[SOLDIER_NUM];//字符串常量最好使用const char*,否则编译器会报warningstatic int Force_of_soldier[SOLDIER_NUM];static int HP_of_soldier[SOLDIER_NUM];Soldier(Headquarter* p,int _kind){pHeadquarter = p;kind = _kind;alive = true;location = pHeadquarter->location;No = pHeadquarter->total_soldier;life = Soldier::HP_of_soldier[kind];}virtual void Print(int hour);virtual void Printwin(Soldier *p, int hour,int i);int PK(Soldier *p,int hour,int i);//调用者先攻击 在第i个城市 return 0 for red win,1 for blue  win,2 for both alive, 3 for both diedbool weapon_Zero();void attack(Soldier *p);//攻击一下void deleteWeapon();void sort_weapon();void sort_weapon_high();void get_weapon(Soldier *p);int get_weapon_force(int kind);void Print_weapon(int hour);bool isalive();int return_kind();int count_weapon(int kind);virtual int return_Lion_loyalty(){}; virtual void yell(int hour,int i){};virtual void Lion_Incloyalty(){};virtual void Iceman_Inclife(){};virtual void rob_weapon(Soldier *p,int hour,int i){};friend class Headquarter;//声明友元friend class MAP;friend class Wolf;
};class Dragon:public Soldier{private://double fmorale;
public:Dragon(Headquarter *p,int _kind):Soldier(p,_kind){Weapon_list.push_back(Weapon(pHeadquarter->total_soldier % WEAPON_NUM));Weapon_num = 1;Weapon_list[0].force = get_weapon_force(Weapon_list[0].kind); }virtual void Print(int hour){Soldier::Print(hour);}virtual void yell(int hour,int i);
};class Ninja:public Soldier{public:Ninja(Headquarter *p,int _kind):Soldier(p,_kind){Weapon_list.push_back(Weapon(pHeadquarter->total_soldier % WEAPON_NUM));Weapon_list.push_back(((pHeadquarter->total_soldier +1) % WEAPON_NUM));Weapon_num = 2;Weapon_list[0].force = get_weapon_force(Weapon_list[0].kind);Weapon_list[1].force = get_weapon_force(Weapon_list[1].kind);}virtual void Print(int hour){Soldier::Print(hour);}
};class Iceman:public Soldier{public:Iceman(Headquarter *p,int _kind):Soldier(p,_kind){Weapon_list.push_back(Weapon(pHeadquarter->total_soldier % WEAPON_NUM));Weapon_num = 1;Weapon_list[0].force = get_weapon_force(Weapon_list[0].kind);}virtual void Print(int hour){Soldier::Print(hour);}virtual void Iceman_Inclife(){life -= life / 10;}
};class Lion:public Soldier{private:int Loyalty;
public:static int K;Lion(Headquarter *p,int _kind):Soldier(p,_kind){Loyalty = pHeadquarter->total_life;Weapon_list.push_back(Weapon(pHeadquarter->total_soldier % WEAPON_NUM));Weapon_num = 1;Weapon_list[0].force = get_weapon_force(Weapon_list[0].kind);}virtual void Print(int hour){Soldier::Print(hour);printf("Its loyalty is %d\n",Loyalty);}virtual int return_Lion_loyalty(){return Loyalty;}virtual void Lion_Incloyalty(){Loyalty -= K;}
};class Wolf:public Soldier{public:Wolf(Headquarter *p,int _kind):Soldier(p,_kind){Weapon_num = 0;}virtual void Print(int hour){Soldier::Print(hour);}virtual void rob_weapon(Soldier *p,int hour,int i);
};void Soldier::Print(int hour){char Color[10];if(pHeadquarter->color == 0) strcpy(Color,"red");else strcpy(Color,"blue");printf("%03d:00 %s %s %d born\n",hour,Color,Name_of_soldier[kind],pHeadquarter->total_soldier);
}int Soldier::get_weapon_force(int weapon_kind){if(weapon_kind == SWORD ) return Soldier::Force_of_soldier[kind] / 5;if(weapon_kind == BOMB) return Soldier::Force_of_soldier[kind] * 4 / 10;else return Soldier::Force_of_soldier[kind] * 3 / 10;
}
void Soldier::Printwin(Soldier *p,int hour,int i){if(pHeadquarter->color == RED){printf("%03d:40 red %s %d killed blue %s %d in city %d remaining %d elements\n",hour,Soldier::Name_of_soldier[kind],No,Soldier::Name_of_soldier[p->kind],p->No,i,life);}else{printf("%03d:40 blue %s %d killed red %s %d in city %d remaining %d elements\n",hour,Soldier::Name_of_soldier[kind],No,Soldier::Name_of_soldier[p->kind],p->No,i,life);}
}int Soldier::count_weapon(int kind){deleteWeapon();sort_weapon();int counter = 0;for(int i = 0;i<Weapon_num;i++){if(Weapon_list[i].kind == kind) counter++;}return counter;
}
void Soldier::attack(Soldier *p){p->life -= Weapon_list[curWeapon_index].force;if(p->life <= 0) p->alive = false;if(kind != NINJA && Weapon_list[curWeapon_index].kind == BOMB){life -= Weapon_list[curWeapon_index].force/2;if(life <= 0) alive = false;}if(Weapon_list[curWeapon_index].kind != SWORD){Weapon_list[curWeapon_index].HP--;}curWeapon_index++;if(curWeapon_index == Weapon_num){deleteWeapon();sort_weapon();}
}void Soldier::sort_weapon(){curWeapon_index = 0;sort(Weapon_list.begin(),Weapon_list.end(),mysort);
}void Soldier::sort_weapon_high(){curWeapon_index = 0;sort(Weapon_list.begin(),Weapon_list.end(),mysort_high);
}void Soldier::deleteWeapon(){auto it = Weapon_list.begin();for(;it != Weapon_list.end();it++){if((*it).HP == 0){it = Weapon_list.erase(it);Weapon_num--;if(it == Weapon_list.end()) break;}}
}void Soldier::get_weapon(Soldier *p){p->deleteWeapon();p->sort_weapon_high();int t = min(10-Weapon_num,p->Weapon_num);for(int i=0;i<t;i++){Weapon_list.push_back(p->Weapon_list[i]);Weapon_list[i+Weapon_num].force = get_weapon_force(Weapon_list[i+Weapon_num].kind);}Weapon_num += t;
}bool Soldier::weapon_Zero(){bool flag = true;auto it = Weapon_list.begin();for(;it != Weapon_list.end(); it++){if(!((*it).force == 0 && (*it).kind == SWORD) ){flag = false;break;}}if(Weapon_num == 0) flag = true;return flag;
}void Soldier::Print_weapon(int hour){int a = count_weapon(SWORD);int b = count_weapon(BOMB);int c = count_weapon(ARROW);if(pHeadquarter->color == RED) printf("%03d:55 red %s %d has %d sword %d bomb %d arrow and %d elements\n",hour,Soldier::Name_of_soldier[kind],No,a,b,c,life);else printf("%03d:55 blue %s %d has %d sword %d bomb %d arrow and %d elements\n",hour,Soldier::Name_of_soldier[kind],No,a,b,c,life);
}int Soldier::PK(Soldier *p,int hour,int i){sort_weapon();p->sort_weapon();while(true){if(life > 0 && p->life >0){if(!weapon_Zero()){attack(p);}}else break;if(life > 0 && p->life > 0){if(!p->weapon_Zero()){p->attack(this);}}else break;if(weapon_Zero() && p->weapon_Zero()) break;}deleteWeapon();p->deleteWeapon();if(isalive() && !p->isalive() ){Printwin(p,hour,i);if(kind == DRAGON) yell(hour,i);get_weapon(p);if(pHeadquarter->color == RED) return 0;else return 1;}if(!isalive() && p->isalive()){p->Printwin(this,hour,i);if(p->kind == DRAGON) p->yell(hour,i);p->get_weapon(this);if(pHeadquarter->color == RED) return 1;else return 0;}if(!isalive() && !p->isalive()){if(pHeadquarter->color == RED){printf("%03d:40 both red %s %d and blue %s %d died in city %d\n",hour,Soldier::Name_of_soldier[kind],No,Soldier::Name_of_soldier[p->kind],p->No,i);}else{printf("%03d:40 both red %s %d and blue %s %d died in city %d\n",hour,Soldier::Name_of_soldier[p->kind],p->No,Soldier::Name_of_soldier[kind],No,i);}return 3;}if(isalive() && p->isalive()){if(pHeadquarter->color == RED){printf("%03d:40 both red %s %d and blue %s %d were alive in city %d\n",hour,Soldier::Name_of_soldier[kind],No,Soldier::Name_of_soldier[p->kind],p->No,i);}else{printf("%03d:40 both red %s %d and blue %s %d were alive in city %d\n",hour,Soldier::Name_of_soldier[p->kind],p->No,Soldier::Name_of_soldier[kind],No,i);}if(kind == DRAGON && p->kind != DRAGON) yell(hour,i);if(p->kind == DRAGON && kind != DRAGON) p->yell(hour,i);if(kind == DRAGON && p->kind == DRAGON){if(pHeadquarter->color == RED){yell(hour,i);p->yell(hour,i);}else{p->yell(hour,i);yell(hour,i);}}return 2;}
}void Dragon::yell(int hour,int i){char Color[10];if(pHeadquarter->color == RED) strcpy(Color,"red");else strcpy(Color,"blue");printf("%03d:40 %s dragon %d yelled in city %d\n",hour,Color,No,i);
}bool Soldier::isalive(){return alive;
}int Soldier::return_kind(){return kind;
}void Wolf::rob_weapon(Soldier *p,int hour,int i){Soldier::deleteWeapon();p->deleteWeapon();if(p->return_kind() == WOLF) return;p->sort_weapon_high();if(p->Weapon_num == 0) return;auto it = p->Weapon_list.begin();int temp = (*it).kind;int counter = 0;while((*it).kind == temp && p->Weapon_num > 0 && Weapon_num < 10){Weapon_list.push_back((*it));Weapon_num++;Weapon_list[Weapon_num-1].force = get_weapon_force((*it).kind);p->Weapon_num--;it = p->Weapon_list.erase(it);it = p->Weapon_list.begin();counter++;}if(pHeadquarter->color == RED){printf("%03d:35 red wolf %d took %d %s from blue %s %d in city %d\n",hour,No,counter,Weapon::Name_of_weapon[temp],Soldier::Name_of_soldier[p->kind],p->No,i);}if(pHeadquarter->color == BLUE){printf("%03d:35 blue wolf %d took %d %s from red %s %d in city %d\n",hour,No,counter,Weapon::Name_of_weapon[temp],Soldier::Name_of_soldier[p->kind],p->No,i);}
}void MAP::Attack(int hour){for(int i=1;i<=City_NUM;i++){if(City_list[i].counter == 2){int res;if(i % 2 == 1) res = City_list[i].p1->PK(City_list[i].p2,hour,i);else res = City_list[i].p2->PK(City_list[i].p1,hour,i);//delete and counterswitch (res){case 0:delete City_list[i].p2;City_list[i].p2 = NULL;City_list[i].counter--;break;case 1:delete City_list[i].p1;City_list[i].p1 = NULL;City_list[i].counter--;case 2:break;case 3:delete City_list[i].p1;delete City_list[i].p2;City_list[i].p1 = NULL;City_list[i].p2 = NULL;City_list[i].counter = 0;}}}
}int MAP::move(int hour){int res = 1;for(int i=City_NUM+1;i>=1;i--){if(City_list[i-1].p1){if(City_list[i-1].p1->kind == LION) City_list[i-1].p1->Lion_Incloyalty();if(City_list[i-1].p1->kind == ICEMAN) City_list[i-1].p1->Iceman_Inclife();City_list[i].p1 = City_list[i-1].p1;City_list[i-1].counter--;City_list[i].counter++;City_list[i-1].p1 = NULL;}}for(int i=0;i<=City_NUM;i++){if(City_list[i+1].p2){if(City_list[i+1].p2->kind == LION) City_list[i+1].p2->Lion_Incloyalty();if(City_list[i+1].p2->kind == ICEMAN) City_list[i+1].p2->Iceman_Inclife();City_list[i].p2 = City_list[i+1].p2;City_list[i+1].counter--;City_list[i].counter++;City_list[i+1].p2 = NULL;}}if(City_list[0].p2 != NULL){res = 0;printf("%03d:10 blue %s %d reached red headquarter with %d elements and force %d\n",hour,Soldier::Name_of_soldier[City_list[0].p2->kind],City_list[0].p2->No,City_list[0].p2->life,Soldier::Force_of_soldier[City_list[0].p2->kind]);printf("%03d:10 red headquarter was taken\n",hour);}for(int i=1;i<=City_NUM;i++){if(City_list[i].p1 != NULL){printf("%03d:10 red %s %d marched to city %d with %d elements and force %d\n",hour,Soldier::Name_of_soldier[City_list[i].p1->kind],City_list[i].p1->No,i,City_list[i].p1->life,Soldier::Force_of_soldier[City_list[i].p1->kind]);}if(City_list[i].p2 != NULL){printf("%03d:10 blue %s %d marched to city %d with %d elements and force %d\n",hour,Soldier::Name_of_soldier[City_list[i].p2->kind],City_list[i].p2->No,i,City_list[i].p2->life,Soldier::Force_of_soldier[City_list[i].p2->kind]);}}if(City_list[City_NUM+1].p1 != NULL){res = 0;printf("%03d:10 red %s %d reached blue headquarter with %d elements and force %d\n",hour,Soldier::Name_of_soldier[City_list[City_NUM+1].p1->kind],City_list[City_NUM+1].p1->No,City_list[City_NUM+1].p1->life,Soldier::Force_of_soldier[City_list[City_NUM+1].p1->kind]);printf("%03d:10 blue headquarter was taken\n",hour);}return res;
}void MAP::Print_Soldier(int hour){for(int i=1;i<=City_NUM;i++){if(City_list[i].p1){City_list[i].p1->Print_weapon(hour);}if(City_list[i].p2){City_list[i].p2->Print_weapon(hour);}}
}void MAP::clear(){for(int i=0;i<25;i++){if(City_list[i].p1 != NULL){delete City_list[i].p1;City_list[i].p1 = NULL;}if(City_list[i].p2 != NULL){delete City_list[i].p2;City_list[i].p2 = NULL;}City_list[i].counter = 0;}
}void MAP::Lion_run(int hour){for(int i=0;i<=City_NUM+1;i++){if(City_list[i].p1 != NULL && City_list[i].p1->kind == LION){if(City_list[i].p1->return_Lion_loyalty() <= 0 && i != City_NUM+1){printf("%03d:05 red lion %d ran away\n",hour,City_list[i].p1->No);City_list[i].counter--;delete City_list[i].p1;City_list[i].p1 = NULL;}}if(City_list[i].p2 != NULL && City_list[i].p2->kind == LION){if(City_list[i].p2->return_Lion_loyalty() <= 0 && i != 0){printf("%03d:05 blue lion %d ran away\n",hour,City_list[i].p2->No);City_list[i].counter--;delete City_list[i].p2;City_list[i].p2 = NULL;}}}
}void MAP::Wolf_rob(int hour){for(int i=1;i<=City_NUM;i++){if(City_list[i].counter == 2 && City_list[i].p1->kind == WOLF){City_list[i].p1->rob_weapon(City_list[i].p2,hour,i);}if(City_list[i].counter == 2 && City_list[i].p2->kind == WOLF){City_list[i].p2->rob_weapon(City_list[i].p1,hour,i);}}
}bool Headquarter::Make_soldier(int hour,MAP* pmap){if(stop_making) return false;int index = curmaking_index;if(Soldier::HP_of_soldier[making_list[index]] > total_life){stop_making = true;return false;}total_life -= Soldier::HP_of_soldier[making_list[index]];curmaking_index = (index+1) % SOLDIER_NUM;total_soldier++;int k = making_list[index];switch (k){case DRAGON:psoldier = new Dragon(this,k);break;case NINJA:psoldier = new Ninja(this,k);break;case ICEMAN:psoldier = new Iceman(this,k);break;case LION:psoldier = new Lion(this,k);break;case WOLF:psoldier = new Wolf(this,k);break;}soldier_num[making_list[index]]++;psoldier->Print(hour);if(color == RED) {pmap->City_list[0].p1 = psoldier;pmap->City_list[0].counter++;}else {pmap->City_list[MAP::City_NUM+1].p2 = psoldier;pmap->City_list[MAP::City_NUM+1].counter++;}return true;
}const char* Soldier::Name_of_soldier[SOLDIER_NUM]={"dragon","ninja","iceman","lion","wolf"};
int Soldier::Force_of_soldier[SOLDIER_NUM];
const char* Weapon::Name_of_weapon[WEAPON_NUM]={"sword","bomb","arrow"};
int Weapon::HP_of_weapon[WEAPON_NUM]={-1,1,2};//-1 for forever
int Soldier::HP_of_soldier[SOLDIER_NUM];
int MAP::City_NUM;
int Lion::K;int main(){freopen("D:\\programming\\datapub.in","r",stdin);int t;int M;int N;int K;int T;int hour;int minute;scanf("%d",&t);int caseNo = 1;while(t--){printf("Case %d:\n",caseNo);caseNo++;scanf("%d %d %d %d",&M,&N,&K,&T);Headquarter redhead(RED,M);Headquarter bluehead(BLUE,M);MAP map = MAP(N);MAP* pmap = &map;MAP::City_NUM = N;Lion::K = K;for(int i=0;i<SOLDIER_NUM;i++){scanf("%d",&Soldier::HP_of_soldier[i]);}for(int i=0;i<SOLDIER_NUM;i++){scanf("%d",&Soldier::Force_of_soldier[i]);}int hour = 0;int minute = 0;redhead.making_list[0]=2;redhead.making_list[1]=3;redhead.making_list[2]=4;redhead.making_list[3]=1;redhead.making_list[4]=0;bluehead.making_list[0]=3;bluehead.making_list[1]=0;bluehead.making_list[2]=1;bluehead.making_list[3]=2;bluehead.making_list[4]=4;while(true){if(hour * 60 + minute <= T){redhead.Make_soldier(hour,pmap);bluehead.Make_soldier(hour,pmap);minute += 5;}else break;if(hour * 60 + minute <= T){pmap->Lion_run(hour);minute += 5;}else break;if(hour * 60 + minute <= T){int res = pmap->move(hour);if(res == 0) break;minute += 25;}else break;if(hour * 60 + minute <= T){pmap->Wolf_rob(hour);minute += 5;}if(hour * 60 + minute <= T){pmap->Attack(hour);minute += 10;}else break;if(hour * 60 + minute <= T){redhead.Print_total_life(hour);bluehead.Print_total_life(hour);minute += 5;}else break;if(hour * 60 + minute <= T){pmap->Print_Soldier(hour);minute = 0;}else break;hour++;}pmap->clear();}return 0;
}

测试用例

输入

116000 10 10 4000
120 20 130 10 20
50 50 50 50 1506000 10 10 1000
20 20 30 10 20
50 50 50 50 50200 4 5 1000
24 50 30 190 4
89 7 23 67 440000 7 1 1000
40 40 40 40 40
2 2 2 2 2300 3 2 100
20 20 20 20 20
10 10 10 10 1020 1 10 1000
20 20 30 10 20
5 5 5 5 56000 10 10 4000
120 20 130 10 20
50 5 50 5 156000 4 10 1000
120 120 30 110 20
50 50 50 50 506000 10 10 1000
20 20 30 10 20
50 50 50 50 502 10 10 1000
10 10 10 10 10
2 2 2 2 26 9 10 6000
120 20 30 10 20
150 50 20 50 150

输出

Case 1:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 5990
000:10 red iceman 1 marched to city 1 with 117 elements and force 50
000:10 blue lion 1 marched to city 10 with 10 elements and force 50
000:50 5870 elements in red headquarter
000:50 5990 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 117 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:00 red lion 2 born
Its loyalty is 5860
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 10 elements and force 50
001:10 red iceman 1 marched to city 2 with 106 elements and force 50
001:10 blue lion 1 marched to city 9 with 10 elements and force 50
001:10 blue dragon 2 marched to city 10 with 120 elements and force 50
001:50 5860 elements in red headquarter
001:50 5870 elements in blue headquarter
001:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 106 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
002:00 red wolf 3 born
002:00 blue ninja 3 born
002:10 red wolf 3 marched to city 1 with 20 elements and force 150
002:10 red lion 2 marched to city 2 with 10 elements and force 50
002:10 red iceman 1 marched to city 3 with 96 elements and force 50
002:10 blue lion 1 marched to city 8 with 10 elements and force 50
002:10 blue dragon 2 marched to city 9 with 120 elements and force 50
002:10 blue ninja 3 marched to city 10 with 20 elements and force 50
002:50 5840 elements in red headquarter
002:50 5850 elements in blue headquarter
002:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
002:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
002:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 96 elements
002:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
002:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
002:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:00 red ninja 4 born
003:00 blue iceman 4 born
003:10 red ninja 4 marched to city 1 with 20 elements and force 50
003:10 red wolf 3 marched to city 2 with 20 elements and force 150
003:10 red lion 2 marched to city 3 with 10 elements and force 50
003:10 red iceman 1 marched to city 4 with 87 elements and force 50
003:10 blue lion 1 marched to city 7 with 10 elements and force 50
003:10 blue dragon 2 marched to city 8 with 120 elements and force 50
003:10 blue ninja 3 marched to city 9 with 20 elements and force 50
003:10 blue iceman 4 marched to city 10 with 117 elements and force 50
003:50 5820 elements in red headquarter
003:50 5720 elements in blue headquarter
003:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
003:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
003:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
003:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 87 elements
003:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
003:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
003:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 117 elements
004:00 red dragon 5 born
004:00 blue wolf 5 born
004:10 red dragon 5 marched to city 1 with 120 elements and force 50
004:10 red ninja 4 marched to city 2 with 20 elements and force 50
004:10 red wolf 3 marched to city 3 with 20 elements and force 150
004:10 red lion 2 marched to city 4 with 10 elements and force 50
004:10 red iceman 1 marched to city 5 with 79 elements and force 50
004:10 blue lion 1 marched to city 6 with 10 elements and force 50
004:10 blue dragon 2 marched to city 7 with 120 elements and force 50
004:10 blue ninja 3 marched to city 8 with 20 elements and force 50
004:10 blue iceman 4 marched to city 9 with 106 elements and force 50
004:10 blue wolf 5 marched to city 10 with 20 elements and force 150
004:50 5700 elements in red headquarter
004:50 5700 elements in blue headquarter
004:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 120 elements
004:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
004:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
004:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
004:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 79 elements
004:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
004:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
004:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
004:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 106 elements
004:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:00 red iceman 6 born
005:00 blue lion 6 born
Its loyalty is 5690
005:10 red iceman 6 marched to city 1 with 117 elements and force 50
005:10 red dragon 5 marched to city 2 with 120 elements and force 50
005:10 red ninja 4 marched to city 3 with 20 elements and force 50
005:10 red wolf 3 marched to city 4 with 20 elements and force 150
005:10 red lion 2 marched to city 5 with 10 elements and force 50
005:10 blue lion 1 marched to city 5 with 10 elements and force 50
005:10 red iceman 1 marched to city 6 with 72 elements and force 50
005:10 blue dragon 2 marched to city 6 with 120 elements and force 50
005:10 blue ninja 3 marched to city 7 with 20 elements and force 50
005:10 blue iceman 4 marched to city 8 with 96 elements and force 50
005:10 blue wolf 5 marched to city 9 with 20 elements and force 150
005:10 blue lion 6 marched to city 10 with 10 elements and force 50
005:40 red lion 2 killed blue lion 1 in city 5 remaining 10 elements
005:40 both red iceman 1 and blue dragon 2 were alive in city 6
005:40 blue dragon 2 yelled in city 6
005:50 5570 elements in red headquarter
005:50 5690 elements in blue headquarter
005:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 117 elements
005:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 120 elements
005:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
005:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 red lion 2 has 0 sword 1 bomb 1 arrow and 10 elements
005:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 32 elements
005:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 100 elements
005:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
005:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 96 elements
005:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:00 red lion 7 born
Its loyalty is 5560
006:00 blue dragon 7 born
006:10 red lion 7 marched to city 1 with 10 elements and force 50
006:10 red iceman 6 marched to city 2 with 106 elements and force 50
006:10 red dragon 5 marched to city 3 with 120 elements and force 50
006:10 red ninja 4 marched to city 4 with 20 elements and force 50
006:10 red wolf 3 marched to city 5 with 20 elements and force 150
006:10 blue dragon 2 marched to city 5 with 100 elements and force 50
006:10 red lion 2 marched to city 6 with 10 elements and force 50
006:10 blue ninja 3 marched to city 6 with 20 elements and force 50
006:10 red iceman 1 marched to city 7 with 29 elements and force 50
006:10 blue iceman 4 marched to city 7 with 87 elements and force 50
006:10 blue wolf 5 marched to city 8 with 20 elements and force 150
006:10 blue lion 6 marched to city 9 with 10 elements and force 50
006:10 blue dragon 7 marched to city 10 with 120 elements and force 50
006:40 both red wolf 3 and blue dragon 2 were alive in city 5
006:40 blue dragon 2 yelled in city 5
006:40 blue ninja 3 killed red lion 2 in city 6 remaining 20 elements
006:40 both red iceman 1 and blue iceman 4 were alive in city 7
006:50 5560 elements in red headquarter
006:50 5570 elements in blue headquarter
006:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
006:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 106 elements
006:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 120 elements
006:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
006:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 100 elements
006:55 blue ninja 3 has 1 sword 2 bomb 1 arrow and 20 elements
006:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 9 elements
006:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 77 elements
006:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
007:00 red wolf 8 born
007:00 blue ninja 8 born
007:10 red wolf 8 marched to city 1 with 20 elements and force 150
007:10 red lion 7 marched to city 2 with 10 elements and force 50
007:10 red iceman 6 marched to city 3 with 96 elements and force 50
007:10 red dragon 5 marched to city 4 with 120 elements and force 50
007:10 blue dragon 2 marched to city 4 with 100 elements and force 50
007:10 red ninja 4 marched to city 5 with 20 elements and force 50
007:10 blue ninja 3 marched to city 5 with 20 elements and force 50
007:10 red wolf 3 marched to city 6 with 20 elements and force 150
007:10 blue iceman 4 marched to city 6 with 70 elements and force 50
007:10 blue wolf 5 marched to city 7 with 20 elements and force 150
007:10 red iceman 1 marched to city 8 with 9 elements and force 50
007:10 blue lion 6 marched to city 8 with 10 elements and force 50
007:10 blue dragon 7 marched to city 9 with 120 elements and force 50
007:10 blue ninja 8 marched to city 10 with 20 elements and force 50
007:40 both red dragon 5 and blue dragon 2 were alive in city 4
007:40 red dragon 5 yelled in city 4
007:40 blue dragon 2 yelled in city 4
007:40 red ninja 4 killed blue ninja 3 in city 5 remaining 20 elements
007:40 both red wolf 3 and blue iceman 4 were alive in city 6
007:40 blue lion 6 killed red iceman 1 in city 8 remaining 10 elements
007:50 5540 elements in red headquarter
007:50 5550 elements in blue headquarter
007:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
007:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 96 elements
007:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
007:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 70 elements
007:55 red ninja 4 has 1 sword 2 bomb 2 arrow and 20 elements
007:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 70 elements
007:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
007:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
007:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:00 red ninja 9 born
008:00 blue iceman 9 born
008:10 red ninja 9 marched to city 1 with 20 elements and force 50
008:10 red wolf 8 marched to city 2 with 20 elements and force 150
008:10 red lion 7 marched to city 3 with 10 elements and force 50
008:10 blue dragon 2 marched to city 3 with 70 elements and force 50
008:10 red iceman 6 marched to city 4 with 87 elements and force 50
008:10 red dragon 5 marched to city 5 with 120 elements and force 50
008:10 blue iceman 4 marched to city 5 with 63 elements and force 50
008:10 red ninja 4 marched to city 6 with 20 elements and force 50
008:10 blue wolf 5 marched to city 6 with 20 elements and force 150
008:10 red wolf 3 marched to city 7 with 20 elements and force 150
008:10 blue lion 6 marched to city 7 with 10 elements and force 50
008:10 blue dragon 7 marched to city 8 with 120 elements and force 50
008:10 blue ninja 8 marched to city 9 with 20 elements and force 50
008:10 blue iceman 9 marched to city 10 with 117 elements and force 50
008:35 blue wolf 5 took 1 sword from red ninja 4 in city 6
008:35 red wolf 3 took 1 sword from blue lion 6 in city 7
008:40 blue dragon 2 killed red lion 7 in city 3 remaining 50 elements
008:40 blue dragon 2 yelled in city 3
008:40 both red dragon 5 and blue iceman 4 were alive in city 5
008:40 red dragon 5 yelled in city 5
008:40 blue wolf 5 killed red ninja 4 in city 6 remaining 20 elements
008:40 red wolf 3 killed blue lion 6 in city 7 remaining 20 elements
008:50 5520 elements in red headquarter
008:50 5420 elements in blue headquarter
008:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
008:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
008:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 50 elements
008:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 87 elements
008:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
008:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 63 elements
008:55 blue wolf 5 has 1 sword 2 bomb 2 arrow and 20 elements
008:55 red wolf 3 has 1 sword 0 bomb 0 arrow and 20 elements
008:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
008:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 117 elements
009:00 red dragon 10 born
009:00 blue wolf 10 born
009:10 red dragon 10 marched to city 1 with 120 elements and force 50
009:10 red ninja 9 marched to city 2 with 20 elements and force 50
009:10 blue dragon 2 marched to city 2 with 50 elements and force 50
009:10 red wolf 8 marched to city 3 with 20 elements and force 150
009:10 blue iceman 4 marched to city 4 with 57 elements and force 50
009:10 red iceman 6 marched to city 5 with 79 elements and force 50
009:10 blue wolf 5 marched to city 5 with 20 elements and force 150
009:10 red dragon 5 marched to city 6 with 120 elements and force 50
009:10 blue dragon 7 marched to city 7 with 120 elements and force 50
009:10 red wolf 3 marched to city 8 with 20 elements and force 150
009:10 blue ninja 8 marched to city 8 with 20 elements and force 50
009:10 blue iceman 9 marched to city 9 with 106 elements and force 50
009:10 blue wolf 10 marched to city 10 with 20 elements and force 150
009:35 blue wolf 5 took 1 sword from red iceman 6 in city 5
009:35 red wolf 3 took 1 sword from blue ninja 8 in city 8
009:40 red ninja 9 killed blue dragon 2 in city 2 remaining 20 elements
009:40 both red iceman 6 and blue wolf 5 died in city 5
009:40 red wolf 3 killed blue ninja 8 in city 8 remaining 5 elements
009:50 5400 elements in red headquarter
009:50 5400 elements in blue headquarter
009:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 120 elements
009:55 red ninja 9 has 1 sword 0 bomb 0 arrow and 20 elements
009:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
009:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 57 elements
009:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
009:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
009:55 red wolf 3 has 2 sword 0 bomb 1 arrow and 5 elements
009:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 106 elements
009:55 blue wolf 10 has 0 sword 0 bomb 0 arrow and 20 elements
010:00 red iceman 11 born
010:00 blue lion 11 born
Its loyalty is 5390
010:10 red iceman 11 marched to city 1 with 117 elements and force 50
010:10 red dragon 10 marched to city 2 with 120 elements and force 50
010:10 red ninja 9 marched to city 3 with 20 elements and force 50
010:10 blue iceman 4 marched to city 3 with 52 elements and force 50
010:10 red wolf 8 marched to city 4 with 20 elements and force 150
010:10 blue dragon 7 marched to city 6 with 120 elements and force 50
010:10 red dragon 5 marched to city 7 with 120 elements and force 50
010:10 blue iceman 9 marched to city 8 with 96 elements and force 50
010:10 red wolf 3 marched to city 9 with 5 elements and force 150
010:10 blue wolf 10 marched to city 9 with 20 elements and force 150
010:10 blue lion 11 marched to city 10 with 10 elements and force 50
010:40 red ninja 9 killed blue iceman 4 in city 3 remaining 20 elements
010:40 red wolf 3 killed blue wolf 10 in city 9 remaining 5 elements
010:50 5270 elements in red headquarter
010:50 5390 elements in blue headquarter
010:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 117 elements
010:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 120 elements
010:55 red ninja 9 has 1 sword 0 bomb 0 arrow and 20 elements
010:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
010:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
010:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
010:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 96 elements
010:55 red wolf 3 has 2 sword 0 bomb 1 arrow and 5 elements
010:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:00 red lion 12 born
Its loyalty is 5260
011:00 blue dragon 12 born
011:10 red lion 12 marched to city 1 with 10 elements and force 50
011:10 red iceman 11 marched to city 2 with 106 elements and force 50
011:10 red dragon 10 marched to city 3 with 120 elements and force 50
011:10 red ninja 9 marched to city 4 with 20 elements and force 50
011:10 red wolf 8 marched to city 5 with 20 elements and force 150
011:10 blue dragon 7 marched to city 5 with 120 elements and force 50
011:10 blue iceman 9 marched to city 7 with 87 elements and force 50
011:10 red dragon 5 marched to city 8 with 120 elements and force 50
011:10 blue lion 11 marched to city 9 with 10 elements and force 50
011:10 red wolf 3 marched to city 10 with 5 elements and force 150
011:10 blue dragon 12 marched to city 10 with 120 elements and force 50
011:35 red wolf 8 took 1 bomb from blue dragon 7 in city 5
011:35 red wolf 3 took 1 sword from blue dragon 12 in city 10
011:40 blue dragon 7 killed red wolf 8 in city 5 remaining 60 elements
011:40 blue dragon 7 yelled in city 5
011:40 red wolf 3 killed blue dragon 12 in city 10 remaining 5 elements
011:50 5260 elements in red headquarter
011:50 5270 elements in blue headquarter
011:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
011:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 106 elements
011:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 120 elements
011:55 red ninja 9 has 1 sword 0 bomb 0 arrow and 20 elements
011:55 blue dragon 7 has 0 sword 0 bomb 0 arrow and 60 elements
011:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 87 elements
011:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
011:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:55 red wolf 3 has 3 sword 0 bomb 0 arrow and 5 elements
012:00 red wolf 13 born
012:00 blue ninja 13 born
012:10 red wolf 13 marched to city 1 with 20 elements and force 150
012:10 red lion 12 marched to city 2 with 10 elements and force 50
012:10 red iceman 11 marched to city 3 with 96 elements and force 50
012:10 red dragon 10 marched to city 4 with 120 elements and force 50
012:10 blue dragon 7 marched to city 4 with 60 elements and force 50
012:10 red ninja 9 marched to city 5 with 20 elements and force 50
012:10 blue iceman 9 marched to city 6 with 79 elements and force 50
012:10 blue lion 11 marched to city 8 with 10 elements and force 50
012:10 red dragon 5 marched to city 9 with 120 elements and force 50
012:10 blue ninja 13 marched to city 10 with 20 elements and force 50
012:10 red wolf 3 reached blue headquarter with 5 elements and force 150
012:10 blue headquarter was taken
Case 2:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 5990
000:10 red iceman 1 marched to city 1 with 27 elements and force 50
000:10 blue lion 1 marched to city 10 with 10 elements and force 50
000:50 5970 elements in red headquarter
000:50 5990 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 27 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:00 red lion 2 born
Its loyalty is 5960
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 10 elements and force 50
001:10 red iceman 1 marched to city 2 with 25 elements and force 50
001:10 blue lion 1 marched to city 9 with 10 elements and force 50
001:10 blue dragon 2 marched to city 10 with 20 elements and force 50
001:50 5960 elements in red headquarter
001:50 5970 elements in blue headquarter
001:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 25 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
002:00 red wolf 3 born
002:00 blue ninja 3 born
002:10 red wolf 3 marched to city 1 with 20 elements and force 50
002:10 red lion 2 marched to city 2 with 10 elements and force 50
002:10 red iceman 1 marched to city 3 with 23 elements and force 50
002:10 blue lion 1 marched to city 8 with 10 elements and force 50
002:10 blue dragon 2 marched to city 9 with 20 elements and force 50
002:10 blue ninja 3 marched to city 10 with 20 elements and force 50
002:50 5940 elements in red headquarter
002:50 5950 elements in blue headquarter
002:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
002:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
002:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 23 elements
002:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
002:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
002:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:00 red ninja 4 born
003:00 blue iceman 4 born
003:10 red ninja 4 marched to city 1 with 20 elements and force 50
003:10 red wolf 3 marched to city 2 with 20 elements and force 50
003:10 red lion 2 marched to city 3 with 10 elements and force 50
003:10 red iceman 1 marched to city 4 with 21 elements and force 50
003:10 blue lion 1 marched to city 7 with 10 elements and force 50
003:10 blue dragon 2 marched to city 8 with 20 elements and force 50
003:10 blue ninja 3 marched to city 9 with 20 elements and force 50
003:10 blue iceman 4 marched to city 10 with 27 elements and force 50
003:50 5920 elements in red headquarter
003:50 5920 elements in blue headquarter
003:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
003:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
003:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
003:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 21 elements
003:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
003:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
003:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 27 elements
004:00 red dragon 5 born
004:00 blue wolf 5 born
004:10 red dragon 5 marched to city 1 with 20 elements and force 50
004:10 red ninja 4 marched to city 2 with 20 elements and force 50
004:10 red wolf 3 marched to city 3 with 20 elements and force 50
004:10 red lion 2 marched to city 4 with 10 elements and force 50
004:10 red iceman 1 marched to city 5 with 19 elements and force 50
004:10 blue lion 1 marched to city 6 with 10 elements and force 50
004:10 blue dragon 2 marched to city 7 with 20 elements and force 50
004:10 blue ninja 3 marched to city 8 with 20 elements and force 50
004:10 blue iceman 4 marched to city 9 with 25 elements and force 50
004:10 blue wolf 5 marched to city 10 with 20 elements and force 50
004:50 5900 elements in red headquarter
004:50 5900 elements in blue headquarter
004:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
004:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
004:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
004:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
004:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 19 elements
004:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
004:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
004:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
004:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 25 elements
004:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:00 red iceman 6 born
005:00 blue lion 6 born
Its loyalty is 5890
005:10 red iceman 6 marched to city 1 with 27 elements and force 50
005:10 red dragon 5 marched to city 2 with 20 elements and force 50
005:10 red ninja 4 marched to city 3 with 20 elements and force 50
005:10 red wolf 3 marched to city 4 with 20 elements and force 50
005:10 red lion 2 marched to city 5 with 10 elements and force 50
005:10 blue lion 1 marched to city 5 with 10 elements and force 50
005:10 red iceman 1 marched to city 6 with 18 elements and force 50
005:10 blue dragon 2 marched to city 6 with 20 elements and force 50
005:10 blue ninja 3 marched to city 7 with 20 elements and force 50
005:10 blue iceman 4 marched to city 8 with 23 elements and force 50
005:10 blue wolf 5 marched to city 9 with 20 elements and force 50
005:10 blue lion 6 marched to city 10 with 10 elements and force 50
005:40 red lion 2 killed blue lion 1 in city 5 remaining 10 elements
005:40 both red iceman 1 and blue dragon 2 died in city 6
005:50 5870 elements in red headquarter
005:50 5890 elements in blue headquarter
005:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 27 elements
005:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
005:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
005:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 red lion 2 has 0 sword 1 bomb 1 arrow and 10 elements
005:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
005:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 23 elements
005:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:00 red lion 7 born
Its loyalty is 5860
006:00 blue dragon 7 born
006:10 red lion 7 marched to city 1 with 10 elements and force 50
006:10 red iceman 6 marched to city 2 with 25 elements and force 50
006:10 red dragon 5 marched to city 3 with 20 elements and force 50
006:10 red ninja 4 marched to city 4 with 20 elements and force 50
006:10 red wolf 3 marched to city 5 with 20 elements and force 50
006:10 red lion 2 marched to city 6 with 10 elements and force 50
006:10 blue ninja 3 marched to city 6 with 20 elements and force 50
006:10 blue iceman 4 marched to city 7 with 21 elements and force 50
006:10 blue wolf 5 marched to city 8 with 20 elements and force 50
006:10 blue lion 6 marched to city 9 with 10 elements and force 50
006:10 blue dragon 7 marched to city 10 with 20 elements and force 50
006:40 blue ninja 3 killed red lion 2 in city 6 remaining 20 elements
006:50 5860 elements in red headquarter
006:50 5870 elements in blue headquarter
006:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
006:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 25 elements
006:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
006:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
006:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue ninja 3 has 1 sword 2 bomb 1 arrow and 20 elements
006:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 21 elements
006:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 20 elements
007:00 red wolf 8 born
007:00 blue ninja 8 born
007:10 red wolf 8 marched to city 1 with 20 elements and force 50
007:10 red lion 7 marched to city 2 with 10 elements and force 50
007:10 red iceman 6 marched to city 3 with 23 elements and force 50
007:10 red dragon 5 marched to city 4 with 20 elements and force 50
007:10 red ninja 4 marched to city 5 with 20 elements and force 50
007:10 blue ninja 3 marched to city 5 with 20 elements and force 50
007:10 red wolf 3 marched to city 6 with 20 elements and force 50
007:10 blue iceman 4 marched to city 6 with 19 elements and force 50
007:10 blue wolf 5 marched to city 7 with 20 elements and force 50
007:10 blue lion 6 marched to city 8 with 10 elements and force 50
007:10 blue dragon 7 marched to city 9 with 20 elements and force 50
007:10 blue ninja 8 marched to city 10 with 20 elements and force 50
007:35 red wolf 3 took 1 bomb from blue iceman 4 in city 6
007:40 red ninja 4 killed blue ninja 3 in city 5 remaining 20 elements
007:40 red wolf 3 killed blue iceman 4 in city 6 remaining 10 elements
007:50 5840 elements in red headquarter
007:50 5850 elements in blue headquarter
007:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
007:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 23 elements
007:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
007:55 red ninja 4 has 1 sword 2 bomb 2 arrow and 20 elements
007:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 10 elements
007:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
007:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 20 elements
007:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:00 red ninja 9 born
008:00 blue iceman 9 born
008:10 red ninja 9 marched to city 1 with 20 elements and force 50
008:10 red wolf 8 marched to city 2 with 20 elements and force 50
008:10 red lion 7 marched to city 3 with 10 elements and force 50
008:10 red iceman 6 marched to city 4 with 21 elements and force 50
008:10 red dragon 5 marched to city 5 with 20 elements and force 50
008:10 red ninja 4 marched to city 6 with 20 elements and force 50
008:10 blue wolf 5 marched to city 6 with 20 elements and force 50
008:10 red wolf 3 marched to city 7 with 10 elements and force 50
008:10 blue lion 6 marched to city 7 with 10 elements and force 50
008:10 blue dragon 7 marched to city 8 with 20 elements and force 50
008:10 blue ninja 8 marched to city 9 with 20 elements and force 50
008:10 blue iceman 9 marched to city 10 with 27 elements and force 50
008:35 blue wolf 5 took 1 sword from red ninja 4 in city 6
008:35 red wolf 3 took 1 sword from blue lion 6 in city 7
008:40 red ninja 4 killed blue wolf 5 in city 6 remaining 10 elements
008:40 red wolf 3 killed blue lion 6 in city 7 remaining 10 elements
008:50 5820 elements in red headquarter
008:50 5820 elements in blue headquarter
008:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
008:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
008:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
008:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 21 elements
008:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
008:55 red ninja 4 has 1 sword 1 bomb 2 arrow and 10 elements
008:55 red wolf 3 has 1 sword 0 bomb 0 arrow and 10 elements
008:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 20 elements
008:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 27 elements
009:00 red dragon 10 born
009:00 blue wolf 10 born
009:10 red dragon 10 marched to city 1 with 20 elements and force 50
009:10 red ninja 9 marched to city 2 with 20 elements and force 50
009:10 red wolf 8 marched to city 3 with 20 elements and force 50
009:10 red lion 7 marched to city 4 with 10 elements and force 50
009:10 red iceman 6 marched to city 5 with 19 elements and force 50
009:10 red dragon 5 marched to city 6 with 20 elements and force 50
009:10 red ninja 4 marched to city 7 with 10 elements and force 50
009:10 blue dragon 7 marched to city 7 with 20 elements and force 50
009:10 red wolf 3 marched to city 8 with 10 elements and force 50
009:10 blue ninja 8 marched to city 8 with 20 elements and force 50
009:10 blue iceman 9 marched to city 9 with 25 elements and force 50
009:10 blue wolf 10 marched to city 10 with 20 elements and force 50
009:35 red wolf 3 took 1 sword from blue ninja 8 in city 8
009:40 both red ninja 4 and blue dragon 7 died in city 7
009:40 blue ninja 8 killed red wolf 3 in city 8 remaining 20 elements
009:50 5800 elements in red headquarter
009:50 5800 elements in blue headquarter
009:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
009:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
009:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
009:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
009:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 19 elements
009:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
009:55 blue ninja 8 has 2 sword 0 bomb 1 arrow and 20 elements
009:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 25 elements
009:55 blue wolf 10 has 0 sword 0 bomb 0 arrow and 20 elements
010:00 red iceman 11 born
010:00 blue lion 11 born
Its loyalty is 5790
010:10 red iceman 11 marched to city 1 with 27 elements and force 50
010:10 red dragon 10 marched to city 2 with 20 elements and force 50
010:10 red ninja 9 marched to city 3 with 20 elements and force 50
010:10 red wolf 8 marched to city 4 with 20 elements and force 50
010:10 red lion 7 marched to city 5 with 10 elements and force 50
010:10 red iceman 6 marched to city 6 with 18 elements and force 50
010:10 red dragon 5 marched to city 7 with 20 elements and force 50
010:10 blue ninja 8 marched to city 7 with 20 elements and force 50
010:10 blue iceman 9 marched to city 8 with 23 elements and force 50
010:10 blue wolf 10 marched to city 9 with 20 elements and force 50
010:10 blue lion 11 marched to city 10 with 10 elements and force 50
010:40 red dragon 5 killed blue ninja 8 in city 7 remaining 10 elements
010:40 red dragon 5 yelled in city 7
010:50 5770 elements in red headquarter
010:50 5790 elements in blue headquarter
010:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 27 elements
010:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
010:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
010:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
010:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
010:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 18 elements
010:55 red dragon 5 has 2 sword 0 bomb 1 arrow and 10 elements
010:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 23 elements
010:55 blue wolf 10 has 0 sword 0 bomb 0 arrow and 20 elements
010:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:00 red lion 12 born
Its loyalty is 5760
011:00 blue dragon 12 born
011:10 red lion 12 marched to city 1 with 10 elements and force 50
011:10 red iceman 11 marched to city 2 with 25 elements and force 50
011:10 red dragon 10 marched to city 3 with 20 elements and force 50
011:10 red ninja 9 marched to city 4 with 20 elements and force 50
011:10 red wolf 8 marched to city 5 with 20 elements and force 50
011:10 red lion 7 marched to city 6 with 10 elements and force 50
011:10 red iceman 6 marched to city 7 with 17 elements and force 50
011:10 blue iceman 9 marched to city 7 with 21 elements and force 50
011:10 red dragon 5 marched to city 8 with 10 elements and force 50
011:10 blue wolf 10 marched to city 8 with 20 elements and force 50
011:10 blue lion 11 marched to city 9 with 10 elements and force 50
011:10 blue dragon 12 marched to city 10 with 20 elements and force 50
011:35 blue wolf 10 took 2 sword from red dragon 5 in city 8
011:40 blue iceman 9 killed red iceman 6 in city 7 remaining 1 elements
011:40 blue wolf 10 killed red dragon 5 in city 8 remaining 20 elements
011:50 5760 elements in red headquarter
011:50 5770 elements in blue headquarter
011:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
011:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 25 elements
011:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
011:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
011:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
011:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
011:55 blue iceman 9 has 2 sword 0 bomb 0 arrow and 1 elements
011:55 blue wolf 10 has 2 sword 0 bomb 1 arrow and 20 elements
011:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:55 blue dragon 12 has 1 sword 0 bomb 0 arrow and 20 elements
012:00 red wolf 13 born
012:00 blue ninja 13 born
012:10 red wolf 13 marched to city 1 with 20 elements and force 50
012:10 red lion 12 marched to city 2 with 10 elements and force 50
012:10 red iceman 11 marched to city 3 with 23 elements and force 50
012:10 red dragon 10 marched to city 4 with 20 elements and force 50
012:10 red ninja 9 marched to city 5 with 20 elements and force 50
012:10 red wolf 8 marched to city 6 with 20 elements and force 50
012:10 blue iceman 9 marched to city 6 with 1 elements and force 50
012:10 red lion 7 marched to city 7 with 10 elements and force 50
012:10 blue wolf 10 marched to city 7 with 20 elements and force 50
012:10 blue lion 11 marched to city 8 with 10 elements and force 50
012:10 blue dragon 12 marched to city 9 with 20 elements and force 50
012:10 blue ninja 13 marched to city 10 with 20 elements and force 50
012:35 red wolf 8 took 2 sword from blue iceman 9 in city 6
012:35 blue wolf 10 took 1 bomb from red lion 7 in city 7
012:40 red wolf 8 killed blue iceman 9 in city 6 remaining 20 elements
012:40 blue wolf 10 killed red lion 7 in city 7 remaining 20 elements
012:50 5740 elements in red headquarter
012:50 5750 elements in blue headquarter
012:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
012:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
012:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 23 elements
012:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
012:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
012:55 red wolf 8 has 2 sword 0 bomb 0 arrow and 20 elements
012:55 blue wolf 10 has 2 sword 1 bomb 1 arrow and 20 elements
012:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
012:55 blue dragon 12 has 1 sword 0 bomb 0 arrow and 20 elements
012:55 blue ninja 13 has 0 sword 1 bomb 1 arrow and 20 elements
013:00 red ninja 14 born
013:00 blue iceman 14 born
013:10 red ninja 14 marched to city 1 with 20 elements and force 50
013:10 red wolf 13 marched to city 2 with 20 elements and force 50
013:10 red lion 12 marched to city 3 with 10 elements and force 50
013:10 red iceman 11 marched to city 4 with 21 elements and force 50
013:10 red dragon 10 marched to city 5 with 20 elements and force 50
013:10 red ninja 9 marched to city 6 with 20 elements and force 50
013:10 blue wolf 10 marched to city 6 with 20 elements and force 50
013:10 red wolf 8 marched to city 7 with 20 elements and force 50
013:10 blue lion 11 marched to city 7 with 10 elements and force 50
013:10 blue dragon 12 marched to city 8 with 20 elements and force 50
013:10 blue ninja 13 marched to city 9 with 20 elements and force 50
013:10 blue iceman 14 marched to city 10 with 27 elements and force 50
013:35 blue wolf 10 took 1 sword from red ninja 9 in city 6
013:35 red wolf 8 took 1 arrow from blue lion 11 in city 7
013:40 red ninja 9 killed blue wolf 10 in city 6 remaining 10 elements
013:40 red wolf 8 killed blue lion 11 in city 7 remaining 20 elements
013:50 5720 elements in red headquarter
013:50 5720 elements in blue headquarter
013:55 red ninja 14 has 1 sword 0 bomb 1 arrow and 20 elements
013:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
013:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
013:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 21 elements
013:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
013:55 red ninja 9 has 3 sword 1 bomb 1 arrow and 10 elements
013:55 red wolf 8 has 2 sword 0 bomb 1 arrow and 20 elements
013:55 blue dragon 12 has 1 sword 0 bomb 0 arrow and 20 elements
013:55 blue ninja 13 has 0 sword 1 bomb 1 arrow and 20 elements
013:55 blue iceman 14 has 0 sword 0 bomb 1 arrow and 27 elements
014:00 red dragon 15 born
014:00 blue wolf 15 born
014:10 red dragon 15 marched to city 1 with 20 elements and force 50
014:10 red ninja 14 marched to city 2 with 20 elements and force 50
014:10 red wolf 13 marched to city 3 with 20 elements and force 50
014:10 red lion 12 marched to city 4 with 10 elements and force 50
014:10 red iceman 11 marched to city 5 with 19 elements and force 50
014:10 red dragon 10 marched to city 6 with 20 elements and force 50
014:10 red ninja 9 marched to city 7 with 10 elements and force 50
014:10 blue dragon 12 marched to city 7 with 20 elements and force 50
014:10 red wolf 8 marched to city 8 with 20 elements and force 50
014:10 blue ninja 13 marched to city 8 with 20 elements and force 50
014:10 blue iceman 14 marched to city 9 with 25 elements and force 50
014:10 blue wolf 15 marched to city 10 with 20 elements and force 50
014:35 red wolf 8 took 1 bomb from blue ninja 13 in city 8
014:40 blue dragon 12 killed red ninja 9 in city 7 remaining 10 elements
014:40 blue dragon 12 yelled in city 7
014:40 blue ninja 13 killed red wolf 8 in city 8 remaining 10 elements
014:50 5700 elements in red headquarter
014:50 5700 elements in blue headquarter
014:55 red dragon 15 has 1 sword 0 bomb 0 arrow and 20 elements
014:55 red ninja 14 has 1 sword 0 bomb 1 arrow and 20 elements
014:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
014:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
014:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 19 elements
014:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
014:55 blue dragon 12 has 4 sword 1 bomb 1 arrow and 10 elements
014:55 blue ninja 13 has 2 sword 1 bomb 1 arrow and 10 elements
014:55 blue iceman 14 has 0 sword 0 bomb 1 arrow and 25 elements
014:55 blue wolf 15 has 0 sword 0 bomb 0 arrow and 20 elements
015:00 red iceman 16 born
015:00 blue lion 16 born
Its loyalty is 5690
015:10 red iceman 16 marched to city 1 with 27 elements and force 50
015:10 red dragon 15 marched to city 2 with 20 elements and force 50
015:10 red ninja 14 marched to city 3 with 20 elements and force 50
015:10 red wolf 13 marched to city 4 with 20 elements and force 50
015:10 red lion 12 marched to city 5 with 10 elements and force 50
015:10 red iceman 11 marched to city 6 with 18 elements and force 50
015:10 blue dragon 12 marched to city 6 with 10 elements and force 50
015:10 red dragon 10 marched to city 7 with 20 elements and force 50
015:10 blue ninja 13 marched to city 7 with 10 elements and force 50
015:10 blue iceman 14 marched to city 8 with 23 elements and force 50
015:10 blue wolf 15 marched to city 9 with 20 elements and force 50
015:10 blue lion 16 marched to city 10 with 10 elements and force 50
015:40 red iceman 11 killed blue dragon 12 in city 6 remaining 8 elements
015:40 red dragon 10 killed blue ninja 13 in city 7 remaining 10 elements
015:40 red dragon 10 yelled in city 7
015:50 5670 elements in red headquarter
015:50 5690 elements in blue headquarter
015:55 red iceman 16 has 0 sword 1 bomb 0 arrow and 27 elements
015:55 red dragon 15 has 1 sword 0 bomb 0 arrow and 20 elements
015:55 red ninja 14 has 1 sword 0 bomb 1 arrow and 20 elements
015:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
015:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
015:55 red iceman 11 has 4 sword 1 bomb 2 arrow and 8 elements
015:55 red dragon 10 has 2 sword 1 bomb 1 arrow and 10 elements
015:55 blue iceman 14 has 0 sword 0 bomb 1 arrow and 23 elements
015:55 blue wolf 15 has 0 sword 0 bomb 0 arrow and 20 elements
015:55 blue lion 16 has 0 sword 1 bomb 0 arrow and 10 elements
016:00 red lion 17 born
Its loyalty is 5660
016:00 blue dragon 17 born
016:10 red lion 17 marched to city 1 with 10 elements and force 50
016:10 red iceman 16 marched to city 2 with 25 elements and force 50
016:10 red dragon 15 marched to city 3 with 20 elements and force 50
016:10 red ninja 14 marched to city 4 with 20 elements and force 50
016:10 red wolf 13 marched to city 5 with 20 elements and force 50
016:10 red lion 12 marched to city 6 with 10 elements and force 50
016:10 red iceman 11 marched to city 7 with 8 elements and force 50
016:10 blue iceman 14 marched to city 7 with 21 elements and force 50
016:10 red dragon 10 marched to city 8 with 10 elements and force 50
016:10 blue wolf 15 marched to city 8 with 20 elements and force 50
016:10 blue lion 16 marched to city 9 with 10 elements and force 50
016:10 blue dragon 17 marched to city 10 with 20 elements and force 50
016:35 blue wolf 15 took 2 sword from red dragon 10 in city 8
016:40 blue iceman 14 killed red iceman 11 in city 7 remaining 11 elements
016:40 blue wolf 15 killed red dragon 10 in city 8 remaining 20 elements
Case 3:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 10
000:10 red iceman 1 marched to city 1 with 27 elements and force 23
000:10 blue lion 1 marched to city 4 with 190 elements and force 67
000:50 170 elements in red headquarter
000:50 10 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 27 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 190 elements
001:10 red iceman 1 marched to city 2 with 25 elements and force 23
001:10 blue lion 1 marched to city 3 with 190 elements and force 67
001:50 170 elements in red headquarter
001:50 10 elements in blue headquarter
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 25 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 190 elements
002:05 blue lion 1 ran away
002:10 red iceman 1 marched to city 3 with 23 elements and force 23
002:50 170 elements in red headquarter
002:50 10 elements in blue headquarter
002:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 23 elements
003:10 red iceman 1 marched to city 4 with 21 elements and force 23
003:50 170 elements in red headquarter
003:50 10 elements in blue headquarter
003:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 21 elements
004:10 red iceman 1 reached blue headquarter with 19 elements and force 23
004:10 blue headquarter was taken
Case 4:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 39960
000:10 red iceman 1 marched to city 1 with 36 elements and force 2
000:10 blue lion 1 marched to city 7 with 40 elements and force 2
000:50 39960 elements in red headquarter
000:50 39960 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 36 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 40 elements
001:00 red lion 2 born
Its loyalty is 39920
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 40 elements and force 2
001:10 red iceman 1 marched to city 2 with 33 elements and force 2
001:10 blue lion 1 marched to city 6 with 40 elements and force 2
001:10 blue dragon 2 marched to city 7 with 40 elements and force 2
001:50 39920 elements in red headquarter
001:50 39920 elements in blue headquarter
001:55 red lion 2 has 0 sword 0 bomb 1 arrow and 40 elements
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 33 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 40 elements
001:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 40 elements
002:00 red wolf 3 born
002:00 blue ninja 3 born
002:10 red wolf 3 marched to city 1 with 40 elements and force 2
002:10 red lion 2 marched to city 2 with 40 elements and force 2
002:10 red iceman 1 marched to city 3 with 30 elements and force 2
002:10 blue lion 1 marched to city 5 with 40 elements and force 2
002:10 blue dragon 2 marched to city 6 with 40 elements and force 2
002:10 blue ninja 3 marched to city 7 with 40 elements and force 2
002:50 39880 elements in red headquarter
002:50 39880 elements in blue headquarter
002:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 40 elements
002:55 red lion 2 has 0 sword 0 bomb 1 arrow and 40 elements
002:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 30 elements
002:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 40 elements
002:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 40 elements
002:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 40 elements
003:00 red ninja 4 born
003:00 blue iceman 4 born
003:10 red ninja 4 marched to city 1 with 40 elements and force 2
003:10 red wolf 3 marched to city 2 with 40 elements and force 2
003:10 red lion 2 marched to city 3 with 40 elements and force 2
003:10 red iceman 1 marched to city 4 with 27 elements and force 2
003:10 blue lion 1 marched to city 4 with 40 elements and force 2
003:10 blue dragon 2 marched to city 5 with 40 elements and force 2
003:10 blue ninja 3 marched to city 6 with 40 elements and force 2
003:10 blue iceman 4 marched to city 7 with 36 elements and force 2
003:40 both red iceman 1 and blue lion 1 were alive in city 4
003:50 39840 elements in red headquarter
003:50 39840 elements in blue headquarter
003:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 40 elements
003:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 40 elements
003:55 red lion 2 has 0 sword 0 bomb 1 arrow and 40 elements
003:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 27 elements
003:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 40 elements
003:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 40 elements
003:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 40 elements
003:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 36 elements
004:00 red dragon 5 born
004:00 blue wolf 5 born
004:10 red dragon 5 marched to city 1 with 40 elements and force 2
004:10 red ninja 4 marched to city 2 with 40 elements and force 2
004:10 red wolf 3 marched to city 3 with 40 elements and force 2
004:10 blue lion 1 marched to city 3 with 40 elements and force 2
004:10 red lion 2 marched to city 4 with 40 elements and force 2
004:10 blue dragon 2 marched to city 4 with 40 elements and force 2
004:10 red iceman 1 marched to city 5 with 25 elements and force 2
004:10 blue ninja 3 marched to city 5 with 40 elements and force 2
004:10 blue iceman 4 marched to city 6 with 33 elements and force 2
004:10 blue wolf 5 marched to city 7 with 40 elements and force 2
004:40 both red wolf 3 and blue lion 1 were alive in city 3
004:40 both red lion 2 and blue dragon 2 were alive in city 4
004:40 blue dragon 2 yelled in city 4
004:40 both red iceman 1 and blue ninja 3 were alive in city 5
004:50 39800 elements in red headquarter
004:50 39800 elements in blue headquarter
004:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 40 elements
004:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 40 elements
004:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 40 elements
004:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 40 elements
004:55 red lion 2 has 0 sword 0 bomb 0 arrow and 40 elements
004:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 40 elements
004:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 25 elements
004:55 blue ninja 3 has 1 sword 0 bomb 0 arrow and 40 elements
004:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 33 elements
004:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 40 elements
005:00 red iceman 6 born
005:00 blue lion 6 born
Its loyalty is 39760
005:10 red iceman 6 marched to city 1 with 36 elements and force 2
005:10 red dragon 5 marched to city 2 with 40 elements and force 2
005:10 blue lion 1 marched to city 2 with 40 elements and force 2
005:10 red ninja 4 marched to city 3 with 40 elements and force 2
005:10 blue dragon 2 marched to city 3 with 40 elements and force 2
005:10 red wolf 3 marched to city 4 with 40 elements and force 2
005:10 blue ninja 3 marched to city 4 with 40 elements and force 2
005:10 red lion 2 marched to city 5 with 40 elements and force 2
005:10 blue iceman 4 marched to city 5 with 30 elements and force 2
005:10 red iceman 1 marched to city 6 with 23 elements and force 2
005:10 blue wolf 5 marched to city 6 with 40 elements and force 2
005:10 blue lion 6 marched to city 7 with 40 elements and force 2
005:35 red wolf 3 took 1 sword from blue ninja 3 in city 4
005:40 both red dragon 5 and blue lion 1 were alive in city 2
005:40 red dragon 5 yelled in city 2
005:40 both red ninja 4 and blue dragon 2 were alive in city 3
005:40 blue dragon 2 yelled in city 3
005:40 both red wolf 3 and blue ninja 3 were alive in city 4
005:40 both red lion 2 and blue iceman 4 were alive in city 5
005:40 both red iceman 1 and blue wolf 5 were alive in city 6
005:50 39760 elements in red headquarter
005:50 39760 elements in blue headquarter
005:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 36 elements
005:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 red ninja 4 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 red wolf 3 has 1 sword 0 bomb 0 arrow and 40 elements
005:55 blue ninja 3 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 red lion 2 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 30 elements
005:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 23 elements
005:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 40 elements
005:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 40 elements
006:00 red lion 7 born
Its loyalty is 39720
006:00 blue dragon 7 born
006:10 red lion 7 marched to city 1 with 40 elements and force 2
006:10 blue lion 1 marched to city 1 with 40 elements and force 2
006:10 red iceman 6 marched to city 2 with 33 elements and force 2
006:10 blue dragon 2 marched to city 2 with 40 elements and force 2
006:10 red dragon 5 marched to city 3 with 40 elements and force 2
006:10 blue ninja 3 marched to city 3 with 40 elements and force 2
006:10 red ninja 4 marched to city 4 with 40 elements and force 2
006:10 blue iceman 4 marched to city 4 with 27 elements and force 2
006:10 red wolf 3 marched to city 5 with 40 elements and force 2
006:10 blue wolf 5 marched to city 5 with 40 elements and force 2
006:10 red lion 2 marched to city 6 with 40 elements and force 2
006:10 blue lion 6 marched to city 6 with 40 elements and force 2
006:10 red iceman 1 marched to city 7 with 21 elements and force 2
006:10 blue dragon 7 marched to city 7 with 40 elements and force 2
006:40 both red lion 7 and blue lion 1 were alive in city 1
006:40 both red iceman 6 and blue dragon 2 were alive in city 2
006:40 blue dragon 2 yelled in city 2
006:40 both red dragon 5 and blue ninja 3 were alive in city 3
006:40 red dragon 5 yelled in city 3
006:40 both red ninja 4 and blue iceman 4 were alive in city 4
006:40 both red wolf 3 and blue wolf 5 were alive in city 5
006:40 both red lion 2 and blue lion 6 were alive in city 6
006:40 both red iceman 1 and blue dragon 7 were alive in city 7
006:40 blue dragon 7 yelled in city 7
006:50 39720 elements in red headquarter
006:50 39720 elements in blue headquarter
006:55 red lion 7 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 33 elements
006:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 blue ninja 3 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 red ninja 4 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 27 elements
006:55 red wolf 3 has 1 sword 0 bomb 0 arrow and 40 elements
006:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 red lion 2 has 0 sword 0 bomb 0 arrow and 40 elements
006:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 40 elements
006:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 21 elements
006:55 blue dragon 7 has 0 sword 0 bomb 0 arrow and 40 elements
007:00 red wolf 8 born
007:00 blue ninja 8 born
007:10 blue lion 1 reached red headquarter with 40 elements and force 2
007:10 red headquarter was taken
007:10 red wolf 8 marched to city 1 with 40 elements and force 2
007:10 blue dragon 2 marched to city 1 with 40 elements and force 2
007:10 red lion 7 marched to city 2 with 40 elements and force 2
007:10 blue ninja 3 marched to city 2 with 40 elements and force 2
007:10 red iceman 6 marched to city 3 with 30 elements and force 2
007:10 blue iceman 4 marched to city 3 with 25 elements and force 2
007:10 red dragon 5 marched to city 4 with 40 elements and force 2
007:10 blue wolf 5 marched to city 4 with 40 elements and force 2
007:10 red ninja 4 marched to city 5 with 40 elements and force 2
007:10 blue lion 6 marched to city 5 with 40 elements and force 2
007:10 red wolf 3 marched to city 6 with 40 elements and force 2
007:10 blue dragon 7 marched to city 6 with 40 elements and force 2
007:10 red lion 2 marched to city 7 with 40 elements and force 2
007:10 blue ninja 8 marched to city 7 with 40 elements and force 2
007:10 red iceman 1 reached blue headquarter with 19 elements and force 2
007:10 blue headquarter was taken
Case 5:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 280
000:10 red iceman 1 marched to city 1 with 18 elements and force 10
000:10 blue lion 1 marched to city 3 with 20 elements and force 10
000:50 280 elements in red headquarter
000:50 280 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 18 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 20 elements
001:00 red lion 2 born
Its loyalty is 260
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 20 elements and force 10
001:10 red iceman 1 marched to city 2 with 17 elements and force 10
001:10 blue lion 1 marched to city 2 with 20 elements and force 10
001:10 blue dragon 2 marched to city 3 with 20 elements and force 10
001:40 both red iceman 1 and blue lion 1 were alive in city 2
Case 6:
000:00 blue lion 1 born
Its loyalty is 10
000:10 blue lion 1 marched to city 1 with 10 elements and force 5
000:50 20 elements in red headquarter
000:50 10 elements in blue headquarter
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:05 blue lion 1 ran away
001:50 20 elements in red headquarter
001:50 10 elements in blue headquarter
002:50 20 elements in red headquarter
002:50 10 elements in blue headquarter
003:50 20 elements in red headquarter
003:50 10 elements in blue headquarter
004:50 20 elements in red headquarter
004:50 10 elements in blue headquarter
005:50 20 elements in red headquarter
005:50 10 elements in blue headquarter
006:50 20 elements in red headquarter
006:50 10 elements in blue headquarter
007:50 20 elements in red headquarter
007:50 10 elements in blue headquarter
008:50 20 elements in red headquarter
008:50 10 elements in blue headquarter
009:50 20 elements in red headquarter
009:50 10 elements in blue headquarter
010:50 20 elements in red headquarter
010:50 10 elements in blue headquarter
011:50 20 elements in red headquarter
011:50 10 elements in blue headquarter
012:50 20 elements in red headquarter
012:50 10 elements in blue headquarter
013:50 20 elements in red headquarter
013:50 10 elements in blue headquarter
014:50 20 elements in red headquarter
014:50 10 elements in blue headquarter
015:50 20 elements in red headquarter
015:50 10 elements in blue headquarter
Case 7:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 5990
000:10 red iceman 1 marched to city 1 with 117 elements and force 50
000:10 blue lion 1 marched to city 10 with 10 elements and force 5
000:50 5870 elements in red headquarter
000:50 5990 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 117 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:00 red lion 2 born
Its loyalty is 5860
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 10 elements and force 5
001:10 red iceman 1 marched to city 2 with 106 elements and force 50
001:10 blue lion 1 marched to city 9 with 10 elements and force 5
001:10 blue dragon 2 marched to city 10 with 120 elements and force 50
001:50 5860 elements in red headquarter
001:50 5870 elements in blue headquarter
001:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 106 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
002:00 red wolf 3 born
002:00 blue ninja 3 born
002:10 red wolf 3 marched to city 1 with 20 elements and force 15
002:10 red lion 2 marched to city 2 with 10 elements and force 5
002:10 red iceman 1 marched to city 3 with 96 elements and force 50
002:10 blue lion 1 marched to city 8 with 10 elements and force 5
002:10 blue dragon 2 marched to city 9 with 120 elements and force 50
002:10 blue ninja 3 marched to city 10 with 20 elements and force 5
002:50 5840 elements in red headquarter
002:50 5850 elements in blue headquarter
002:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
002:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
002:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 96 elements
002:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
002:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
002:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:00 red ninja 4 born
003:00 blue iceman 4 born
003:10 red ninja 4 marched to city 1 with 20 elements and force 5
003:10 red wolf 3 marched to city 2 with 20 elements and force 15
003:10 red lion 2 marched to city 3 with 10 elements and force 5
003:10 red iceman 1 marched to city 4 with 87 elements and force 50
003:10 blue lion 1 marched to city 7 with 10 elements and force 5
003:10 blue dragon 2 marched to city 8 with 120 elements and force 50
003:10 blue ninja 3 marched to city 9 with 20 elements and force 5
003:10 blue iceman 4 marched to city 10 with 117 elements and force 50
003:50 5820 elements in red headquarter
003:50 5720 elements in blue headquarter
003:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
003:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
003:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
003:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 87 elements
003:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
003:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
003:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 117 elements
004:00 red dragon 5 born
004:00 blue wolf 5 born
004:10 red dragon 5 marched to city 1 with 120 elements and force 50
004:10 red ninja 4 marched to city 2 with 20 elements and force 5
004:10 red wolf 3 marched to city 3 with 20 elements and force 15
004:10 red lion 2 marched to city 4 with 10 elements and force 5
004:10 red iceman 1 marched to city 5 with 79 elements and force 50
004:10 blue lion 1 marched to city 6 with 10 elements and force 5
004:10 blue dragon 2 marched to city 7 with 120 elements and force 50
004:10 blue ninja 3 marched to city 8 with 20 elements and force 5
004:10 blue iceman 4 marched to city 9 with 106 elements and force 50
004:10 blue wolf 5 marched to city 10 with 20 elements and force 15
004:50 5700 elements in red headquarter
004:50 5700 elements in blue headquarter
004:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 120 elements
004:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
004:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
004:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
004:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 79 elements
004:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
004:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
004:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
004:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 106 elements
004:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:00 red iceman 6 born
005:00 blue lion 6 born
Its loyalty is 5690
005:10 red iceman 6 marched to city 1 with 117 elements and force 50
005:10 red dragon 5 marched to city 2 with 120 elements and force 50
005:10 red ninja 4 marched to city 3 with 20 elements and force 5
005:10 red wolf 3 marched to city 4 with 20 elements and force 15
005:10 red lion 2 marched to city 5 with 10 elements and force 5
005:10 blue lion 1 marched to city 5 with 10 elements and force 5
005:10 red iceman 1 marched to city 6 with 72 elements and force 50
005:10 blue dragon 2 marched to city 6 with 120 elements and force 50
005:10 blue ninja 3 marched to city 7 with 20 elements and force 5
005:10 blue iceman 4 marched to city 8 with 96 elements and force 50
005:10 blue wolf 5 marched to city 9 with 20 elements and force 15
005:10 blue lion 6 marched to city 10 with 10 elements and force 5
005:40 both red lion 2 and blue lion 1 were alive in city 5
005:40 both red iceman 1 and blue dragon 2 were alive in city 6
005:40 blue dragon 2 yelled in city 6
005:50 5570 elements in red headquarter
005:50 5690 elements in blue headquarter
005:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 117 elements
005:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 120 elements
005:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
005:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 red lion 2 has 0 sword 0 bomb 0 arrow and 8 elements
005:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 7 elements
005:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 32 elements
005:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 100 elements
005:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
005:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 96 elements
005:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:00 red lion 7 born
Its loyalty is 5560
006:00 blue dragon 7 born
006:10 red lion 7 marched to city 1 with 10 elements and force 5
006:10 red iceman 6 marched to city 2 with 106 elements and force 50
006:10 red dragon 5 marched to city 3 with 120 elements and force 50
006:10 red ninja 4 marched to city 4 with 20 elements and force 5
006:10 blue lion 1 marched to city 4 with 7 elements and force 5
006:10 red wolf 3 marched to city 5 with 20 elements and force 15
006:10 blue dragon 2 marched to city 5 with 100 elements and force 50
006:10 red lion 2 marched to city 6 with 8 elements and force 5
006:10 blue ninja 3 marched to city 6 with 20 elements and force 5
006:10 red iceman 1 marched to city 7 with 29 elements and force 50
006:10 blue iceman 4 marched to city 7 with 87 elements and force 50
006:10 blue wolf 5 marched to city 8 with 20 elements and force 15
006:10 blue lion 6 marched to city 9 with 10 elements and force 5
006:10 blue dragon 7 marched to city 10 with 120 elements and force 50
006:40 both red ninja 4 and blue lion 1 were alive in city 4
006:40 both red wolf 3 and blue dragon 2 were alive in city 5
006:40 blue dragon 2 yelled in city 5
006:40 blue ninja 3 killed red lion 2 in city 6 remaining 20 elements
006:40 both red iceman 1 and blue iceman 4 were alive in city 7
006:50 5560 elements in red headquarter
006:50 5570 elements in blue headquarter
006:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
006:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 106 elements
006:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 120 elements
006:55 red ninja 4 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 3 elements
006:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 100 elements
006:55 blue ninja 3 has 1 sword 0 bomb 0 arrow and 20 elements
006:55 red iceman 1 has 0 sword 0 bomb 0 arrow and 9 elements
006:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 77 elements
006:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
007:00 red wolf 8 born
007:00 blue ninja 8 born
007:10 red wolf 8 marched to city 1 with 20 elements and force 15
007:10 red lion 7 marched to city 2 with 10 elements and force 5
007:10 red iceman 6 marched to city 3 with 96 elements and force 50
007:10 blue lion 1 marched to city 3 with 3 elements and force 5
007:10 red dragon 5 marched to city 4 with 120 elements and force 50
007:10 blue dragon 2 marched to city 4 with 100 elements and force 50
007:10 red ninja 4 marched to city 5 with 20 elements and force 5
007:10 blue ninja 3 marched to city 5 with 20 elements and force 5
007:10 red wolf 3 marched to city 6 with 20 elements and force 15
007:10 blue iceman 4 marched to city 6 with 70 elements and force 50
007:10 blue wolf 5 marched to city 7 with 20 elements and force 15
007:10 red iceman 1 marched to city 8 with 9 elements and force 50
007:10 blue lion 6 marched to city 8 with 10 elements and force 5
007:10 blue dragon 7 marched to city 9 with 120 elements and force 50
007:10 blue ninja 8 marched to city 10 with 20 elements and force 5
007:40 red iceman 6 killed blue lion 1 in city 3 remaining 96 elements
007:40 both red dragon 5 and blue dragon 2 were alive in city 4
007:40 red dragon 5 yelled in city 4
007:40 blue dragon 2 yelled in city 4
007:40 blue ninja 3 killed red ninja 4 in city 5 remaining 20 elements
007:40 both red wolf 3 and blue iceman 4 were alive in city 6
007:40 blue lion 6 killed red iceman 1 in city 8 remaining 10 elements
007:50 5540 elements in red headquarter
007:50 5550 elements in blue headquarter
007:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
007:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 96 elements
007:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
007:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 70 elements
007:55 blue ninja 3 has 1 sword 0 bomb 0 arrow and 20 elements
007:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 70 elements
007:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
007:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
007:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:00 red ninja 9 born
008:00 blue iceman 9 born
008:10 red ninja 9 marched to city 1 with 20 elements and force 5
008:10 red wolf 8 marched to city 2 with 20 elements and force 15
008:10 red lion 7 marched to city 3 with 10 elements and force 5
008:10 blue dragon 2 marched to city 3 with 70 elements and force 50
008:10 red iceman 6 marched to city 4 with 87 elements and force 50
008:10 blue ninja 3 marched to city 4 with 20 elements and force 5
008:10 red dragon 5 marched to city 5 with 120 elements and force 50
008:10 blue iceman 4 marched to city 5 with 63 elements and force 50
008:10 blue wolf 5 marched to city 6 with 20 elements and force 15
008:10 red wolf 3 marched to city 7 with 20 elements and force 15
008:10 blue lion 6 marched to city 7 with 10 elements and force 5
008:10 blue dragon 7 marched to city 8 with 120 elements and force 50
008:10 blue ninja 8 marched to city 9 with 20 elements and force 5
008:10 blue iceman 9 marched to city 10 with 117 elements and force 50
008:35 red wolf 3 took 1 sword from blue lion 6 in city 7
008:40 both red lion 7 and blue dragon 2 were alive in city 3
008:40 blue dragon 2 yelled in city 3
008:40 red iceman 6 killed blue ninja 3 in city 4 remaining 85 elements
008:40 both red dragon 5 and blue iceman 4 were alive in city 5
008:40 red dragon 5 yelled in city 5
008:40 red wolf 3 killed blue lion 6 in city 7 remaining 20 elements
008:50 5520 elements in red headquarter
008:50 5420 elements in blue headquarter
008:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
008:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
008:55 red lion 7 has 0 sword 0 bomb 0 arrow and 9 elements
008:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 68 elements
008:55 red iceman 6 has 2 sword 0 bomb 0 arrow and 85 elements
008:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
008:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 63 elements
008:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
008:55 red wolf 3 has 1 sword 0 bomb 0 arrow and 20 elements
008:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
008:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 117 elements
009:00 red dragon 10 born
009:00 blue wolf 10 born
009:10 red dragon 10 marched to city 1 with 120 elements and force 50
009:10 red ninja 9 marched to city 2 with 20 elements and force 5
009:10 blue dragon 2 marched to city 2 with 68 elements and force 50
009:10 red wolf 8 marched to city 3 with 20 elements and force 15
009:10 red lion 7 marched to city 4 with 9 elements and force 5
009:10 blue iceman 4 marched to city 4 with 57 elements and force 50
009:10 red iceman 6 marched to city 5 with 77 elements and force 50
009:10 blue wolf 5 marched to city 5 with 20 elements and force 15
009:10 red dragon 5 marched to city 6 with 120 elements and force 50
009:10 blue dragon 7 marched to city 7 with 120 elements and force 50
009:10 red wolf 3 marched to city 8 with 20 elements and force 15
009:10 blue ninja 8 marched to city 8 with 20 elements and force 5
009:10 blue iceman 9 marched to city 9 with 106 elements and force 50
009:10 blue wolf 10 marched to city 10 with 20 elements and force 15
009:35 blue wolf 5 took 2 sword from red iceman 6 in city 5
009:35 red wolf 3 took 1 sword from blue ninja 8 in city 8
009:40 red ninja 9 killed blue dragon 2 in city 2 remaining 20 elements
009:40 both red lion 7 and blue iceman 4 were alive in city 4
009:40 blue wolf 5 killed red iceman 6 in city 5 remaining 20 elements
009:40 red wolf 3 killed blue ninja 8 in city 8 remaining 18 elements
009:50 5400 elements in red headquarter
009:50 5400 elements in blue headquarter
009:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 120 elements
009:55 red ninja 9 has 1 sword 0 bomb 0 arrow and 20 elements
009:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
009:55 red lion 7 has 0 sword 0 bomb 0 arrow and 9 elements
009:55 blue iceman 4 has 0 sword 0 bomb 0 arrow and 57 elements
009:55 blue wolf 5 has 2 sword 0 bomb 0 arrow and 20 elements
009:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
009:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
009:55 red wolf 3 has 2 sword 0 bomb 0 arrow and 18 elements
009:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 106 elements
009:55 blue wolf 10 has 0 sword 0 bomb 0 arrow and 20 elements
010:00 red iceman 11 born
010:00 blue lion 11 born
Its loyalty is 5390
010:10 red iceman 11 marched to city 1 with 117 elements and force 50
010:10 red dragon 10 marched to city 2 with 120 elements and force 50
010:10 red ninja 9 marched to city 3 with 20 elements and force 5
010:10 blue iceman 4 marched to city 3 with 52 elements and force 50
010:10 red wolf 8 marched to city 4 with 20 elements and force 15
010:10 blue wolf 5 marched to city 4 with 20 elements and force 15
010:10 red lion 7 marched to city 5 with 9 elements and force 5
010:10 blue dragon 7 marched to city 6 with 120 elements and force 50
010:10 red dragon 5 marched to city 7 with 120 elements and force 50
010:10 blue iceman 9 marched to city 8 with 96 elements and force 50
010:10 red wolf 3 marched to city 9 with 18 elements and force 15
010:10 blue wolf 10 marched to city 9 with 20 elements and force 15
010:10 blue lion 11 marched to city 10 with 10 elements and force 5
010:40 red ninja 9 killed blue iceman 4 in city 3 remaining 20 elements
010:40 blue wolf 5 killed red wolf 8 in city 4 remaining 20 elements
010:40 red wolf 3 killed blue wolf 10 in city 9 remaining 18 elements
010:50 5270 elements in red headquarter
010:50 5390 elements in blue headquarter
010:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 117 elements
010:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 120 elements
010:55 red ninja 9 has 1 sword 0 bomb 0 arrow and 20 elements
010:55 blue wolf 5 has 2 sword 0 bomb 0 arrow and 20 elements
010:55 red lion 7 has 0 sword 0 bomb 0 arrow and 9 elements
010:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
010:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
010:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 96 elements
010:55 red wolf 3 has 2 sword 0 bomb 0 arrow and 18 elements
010:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:00 red lion 12 born
Its loyalty is 5260
011:00 blue dragon 12 born
011:10 red lion 12 marched to city 1 with 10 elements and force 5
011:10 red iceman 11 marched to city 2 with 106 elements and force 50
011:10 red dragon 10 marched to city 3 with 120 elements and force 50
011:10 blue wolf 5 marched to city 3 with 20 elements and force 15
011:10 red ninja 9 marched to city 4 with 20 elements and force 5
011:10 blue dragon 7 marched to city 5 with 120 elements and force 50
011:10 red lion 7 marched to city 6 with 9 elements and force 5
011:10 blue iceman 9 marched to city 7 with 87 elements and force 50
011:10 red dragon 5 marched to city 8 with 120 elements and force 50
011:10 blue lion 11 marched to city 9 with 10 elements and force 5
011:10 red wolf 3 marched to city 10 with 18 elements and force 15
011:10 blue dragon 12 marched to city 10 with 120 elements and force 50
011:35 blue wolf 5 took 1 bomb from red dragon 10 in city 3
011:35 red wolf 3 took 1 sword from blue dragon 12 in city 10
011:40 blue wolf 5 killed red dragon 10 in city 3 remaining 17 elements
011:40 red wolf 3 killed blue dragon 12 in city 10 remaining 18 elements
011:50 5260 elements in red headquarter
011:50 5270 elements in blue headquarter
011:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
011:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 106 elements
011:55 blue wolf 5 has 2 sword 0 bomb 0 arrow and 17 elements
011:55 red ninja 9 has 1 sword 0 bomb 0 arrow and 20 elements
011:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 120 elements
011:55 red lion 7 has 0 sword 0 bomb 0 arrow and 9 elements
011:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 87 elements
011:55 red dragon 5 has 0 sword 0 bomb 0 arrow and 120 elements
011:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:55 red wolf 3 has 3 sword 0 bomb 0 arrow and 18 elements
012:00 red wolf 13 born
012:00 blue ninja 13 born
012:10 red wolf 13 marched to city 1 with 20 elements and force 15
012:10 red lion 12 marched to city 2 with 10 elements and force 5
012:10 blue wolf 5 marched to city 2 with 17 elements and force 15
012:10 red iceman 11 marched to city 3 with 96 elements and force 50
012:10 blue dragon 7 marched to city 4 with 120 elements and force 50
012:10 red ninja 9 marched to city 5 with 20 elements and force 5
012:10 blue iceman 9 marched to city 6 with 79 elements and force 50
012:10 red lion 7 marched to city 7 with 9 elements and force 5
012:10 blue lion 11 marched to city 8 with 10 elements and force 5
012:10 red dragon 5 marched to city 9 with 120 elements and force 50
012:10 blue ninja 13 marched to city 10 with 20 elements and force 5
012:10 red wolf 3 reached blue headquarter with 18 elements and force 15
012:10 blue headquarter was taken
Case 8:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 5890
000:10 red iceman 1 marched to city 1 with 27 elements and force 50
000:10 blue lion 1 marched to city 4 with 110 elements and force 50
000:50 5970 elements in red headquarter
000:50 5890 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 27 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 110 elements
001:00 red lion 2 born
Its loyalty is 5860
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 110 elements and force 50
001:10 red iceman 1 marched to city 2 with 25 elements and force 50
001:10 blue lion 1 marched to city 3 with 110 elements and force 50
001:10 blue dragon 2 marched to city 4 with 120 elements and force 50
001:50 5860 elements in red headquarter
001:50 5770 elements in blue headquarter
001:55 red lion 2 has 0 sword 0 bomb 1 arrow and 110 elements
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 25 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 110 elements
001:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 120 elements
002:00 red wolf 3 born
002:00 blue ninja 3 born
002:10 red wolf 3 marched to city 1 with 20 elements and force 50
002:10 red lion 2 marched to city 2 with 110 elements and force 50
002:10 blue lion 1 marched to city 2 with 110 elements and force 50
002:10 red iceman 1 marched to city 3 with 23 elements and force 50
002:10 blue dragon 2 marched to city 3 with 120 elements and force 50
002:10 blue ninja 3 marched to city 4 with 120 elements and force 50
002:40 both red lion 2 and blue lion 1 were alive in city 2
002:40 blue dragon 2 killed red iceman 1 in city 3 remaining 100 elements
002:40 blue dragon 2 yelled in city 3
002:50 5840 elements in red headquarter
002:50 5650 elements in blue headquarter
002:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
002:55 red lion 2 has 0 sword 0 bomb 0 arrow and 90 elements
002:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 70 elements
002:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 100 elements
002:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 120 elements
003:00 red ninja 4 born
003:00 blue iceman 4 born
003:10 red ninja 4 marched to city 1 with 120 elements and force 50
003:10 blue lion 1 marched to city 1 with 70 elements and force 50
003:10 red wolf 3 marched to city 2 with 20 elements and force 50
003:10 blue dragon 2 marched to city 2 with 100 elements and force 50
003:10 red lion 2 marched to city 3 with 90 elements and force 50
003:10 blue ninja 3 marched to city 3 with 120 elements and force 50
003:10 blue iceman 4 marched to city 4 with 27 elements and force 50
003:35 red wolf 3 took 1 arrow from blue dragon 2 in city 2
003:40 both red ninja 4 and blue lion 1 were alive in city 1
003:40 both red wolf 3 and blue dragon 2 were alive in city 2
003:40 blue dragon 2 yelled in city 2
003:40 blue ninja 3 killed red lion 2 in city 3 remaining 120 elements
003:50 5720 elements in red headquarter
003:50 5620 elements in blue headquarter
003:55 red ninja 4 has 0 sword 0 bomb 0 arrow and 120 elements
003:55 blue lion 1 has 0 sword 0 bomb 0 arrow and 20 elements
003:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
003:55 blue dragon 2 has 0 sword 0 bomb 0 arrow and 85 elements
003:55 blue ninja 3 has 1 sword 0 bomb 0 arrow and 120 elements
003:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 27 elements
004:00 red dragon 5 born
004:00 blue wolf 5 born
004:10 blue lion 1 reached red headquarter with 20 elements and force 50
004:10 red headquarter was taken
004:10 red dragon 5 marched to city 1 with 120 elements and force 50
004:10 blue dragon 2 marched to city 1 with 85 elements and force 50
004:10 red ninja 4 marched to city 2 with 120 elements and force 50
004:10 blue ninja 3 marched to city 2 with 120 elements and force 50
004:10 red wolf 3 marched to city 3 with 20 elements and force 50
004:10 blue iceman 4 marched to city 3 with 25 elements and force 50
004:10 blue wolf 5 marched to city 4 with 20 elements and force 50
Case 9:
000:00 red iceman 1 born
000:00 blue lion 1 born
Its loyalty is 5990
000:10 red iceman 1 marched to city 1 with 27 elements and force 50
000:10 blue lion 1 marched to city 10 with 10 elements and force 50
000:50 5970 elements in red headquarter
000:50 5990 elements in blue headquarter
000:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 27 elements
000:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:00 red lion 2 born
Its loyalty is 5960
001:00 blue dragon 2 born
001:10 red lion 2 marched to city 1 with 10 elements and force 50
001:10 red iceman 1 marched to city 2 with 25 elements and force 50
001:10 blue lion 1 marched to city 9 with 10 elements and force 50
001:10 blue dragon 2 marched to city 10 with 20 elements and force 50
001:50 5960 elements in red headquarter
001:50 5970 elements in blue headquarter
001:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
001:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 25 elements
001:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
001:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
002:00 red wolf 3 born
002:00 blue ninja 3 born
002:10 red wolf 3 marched to city 1 with 20 elements and force 50
002:10 red lion 2 marched to city 2 with 10 elements and force 50
002:10 red iceman 1 marched to city 3 with 23 elements and force 50
002:10 blue lion 1 marched to city 8 with 10 elements and force 50
002:10 blue dragon 2 marched to city 9 with 20 elements and force 50
002:10 blue ninja 3 marched to city 10 with 20 elements and force 50
002:50 5940 elements in red headquarter
002:50 5950 elements in blue headquarter
002:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
002:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
002:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 23 elements
002:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
002:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
002:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:00 red ninja 4 born
003:00 blue iceman 4 born
003:10 red ninja 4 marched to city 1 with 20 elements and force 50
003:10 red wolf 3 marched to city 2 with 20 elements and force 50
003:10 red lion 2 marched to city 3 with 10 elements and force 50
003:10 red iceman 1 marched to city 4 with 21 elements and force 50
003:10 blue lion 1 marched to city 7 with 10 elements and force 50
003:10 blue dragon 2 marched to city 8 with 20 elements and force 50
003:10 blue ninja 3 marched to city 9 with 20 elements and force 50
003:10 blue iceman 4 marched to city 10 with 27 elements and force 50
003:50 5920 elements in red headquarter
003:50 5920 elements in blue headquarter
003:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
003:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
003:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
003:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 21 elements
003:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
003:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
003:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
003:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 27 elements
004:00 red dragon 5 born
004:00 blue wolf 5 born
004:10 red dragon 5 marched to city 1 with 20 elements and force 50
004:10 red ninja 4 marched to city 2 with 20 elements and force 50
004:10 red wolf 3 marched to city 3 with 20 elements and force 50
004:10 red lion 2 marched to city 4 with 10 elements and force 50
004:10 red iceman 1 marched to city 5 with 19 elements and force 50
004:10 blue lion 1 marched to city 6 with 10 elements and force 50
004:10 blue dragon 2 marched to city 7 with 20 elements and force 50
004:10 blue ninja 3 marched to city 8 with 20 elements and force 50
004:10 blue iceman 4 marched to city 9 with 25 elements and force 50
004:10 blue wolf 5 marched to city 10 with 20 elements and force 50
004:50 5900 elements in red headquarter
004:50 5900 elements in blue headquarter
004:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
004:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
004:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
004:55 red lion 2 has 0 sword 0 bomb 1 arrow and 10 elements
004:55 red iceman 1 has 0 sword 1 bomb 0 arrow and 19 elements
004:55 blue lion 1 has 0 sword 1 bomb 0 arrow and 10 elements
004:55 blue dragon 2 has 0 sword 0 bomb 1 arrow and 20 elements
004:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
004:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 25 elements
004:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:00 red iceman 6 born
005:00 blue lion 6 born
Its loyalty is 5890
005:10 red iceman 6 marched to city 1 with 27 elements and force 50
005:10 red dragon 5 marched to city 2 with 20 elements and force 50
005:10 red ninja 4 marched to city 3 with 20 elements and force 50
005:10 red wolf 3 marched to city 4 with 20 elements and force 50
005:10 red lion 2 marched to city 5 with 10 elements and force 50
005:10 blue lion 1 marched to city 5 with 10 elements and force 50
005:10 red iceman 1 marched to city 6 with 18 elements and force 50
005:10 blue dragon 2 marched to city 6 with 20 elements and force 50
005:10 blue ninja 3 marched to city 7 with 20 elements and force 50
005:10 blue iceman 4 marched to city 8 with 23 elements and force 50
005:10 blue wolf 5 marched to city 9 with 20 elements and force 50
005:10 blue lion 6 marched to city 10 with 10 elements and force 50
005:40 red lion 2 killed blue lion 1 in city 5 remaining 10 elements
005:40 both red iceman 1 and blue dragon 2 died in city 6
005:50 5870 elements in red headquarter
005:50 5890 elements in blue headquarter
005:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 27 elements
005:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
005:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
005:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 red lion 2 has 0 sword 1 bomb 1 arrow and 10 elements
005:55 blue ninja 3 has 1 sword 1 bomb 0 arrow and 20 elements
005:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 23 elements
005:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
005:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:00 red lion 7 born
Its loyalty is 5860
006:00 blue dragon 7 born
006:10 red lion 7 marched to city 1 with 10 elements and force 50
006:10 red iceman 6 marched to city 2 with 25 elements and force 50
006:10 red dragon 5 marched to city 3 with 20 elements and force 50
006:10 red ninja 4 marched to city 4 with 20 elements and force 50
006:10 red wolf 3 marched to city 5 with 20 elements and force 50
006:10 red lion 2 marched to city 6 with 10 elements and force 50
006:10 blue ninja 3 marched to city 6 with 20 elements and force 50
006:10 blue iceman 4 marched to city 7 with 21 elements and force 50
006:10 blue wolf 5 marched to city 8 with 20 elements and force 50
006:10 blue lion 6 marched to city 9 with 10 elements and force 50
006:10 blue dragon 7 marched to city 10 with 20 elements and force 50
006:40 blue ninja 3 killed red lion 2 in city 6 remaining 20 elements
006:50 5860 elements in red headquarter
006:50 5870 elements in blue headquarter
006:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
006:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 25 elements
006:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
006:55 red ninja 4 has 0 sword 1 bomb 1 arrow and 20 elements
006:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue ninja 3 has 1 sword 2 bomb 1 arrow and 20 elements
006:55 blue iceman 4 has 0 sword 1 bomb 0 arrow and 21 elements
006:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
006:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
006:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 20 elements
007:00 red wolf 8 born
007:00 blue ninja 8 born
007:10 red wolf 8 marched to city 1 with 20 elements and force 50
007:10 red lion 7 marched to city 2 with 10 elements and force 50
007:10 red iceman 6 marched to city 3 with 23 elements and force 50
007:10 red dragon 5 marched to city 4 with 20 elements and force 50
007:10 red ninja 4 marched to city 5 with 20 elements and force 50
007:10 blue ninja 3 marched to city 5 with 20 elements and force 50
007:10 red wolf 3 marched to city 6 with 20 elements and force 50
007:10 blue iceman 4 marched to city 6 with 19 elements and force 50
007:10 blue wolf 5 marched to city 7 with 20 elements and force 50
007:10 blue lion 6 marched to city 8 with 10 elements and force 50
007:10 blue dragon 7 marched to city 9 with 20 elements and force 50
007:10 blue ninja 8 marched to city 10 with 20 elements and force 50
007:35 red wolf 3 took 1 bomb from blue iceman 4 in city 6
007:40 red ninja 4 killed blue ninja 3 in city 5 remaining 20 elements
007:40 red wolf 3 killed blue iceman 4 in city 6 remaining 10 elements
007:50 5840 elements in red headquarter
007:50 5850 elements in blue headquarter
007:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
007:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 23 elements
007:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
007:55 red ninja 4 has 1 sword 2 bomb 2 arrow and 20 elements
007:55 red wolf 3 has 0 sword 0 bomb 0 arrow and 10 elements
007:55 blue wolf 5 has 0 sword 0 bomb 0 arrow and 20 elements
007:55 blue lion 6 has 1 sword 0 bomb 0 arrow and 10 elements
007:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 20 elements
007:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:00 red ninja 9 born
008:00 blue iceman 9 born
008:10 red ninja 9 marched to city 1 with 20 elements and force 50
008:10 red wolf 8 marched to city 2 with 20 elements and force 50
008:10 red lion 7 marched to city 3 with 10 elements and force 50
008:10 red iceman 6 marched to city 4 with 21 elements and force 50
008:10 red dragon 5 marched to city 5 with 20 elements and force 50
008:10 red ninja 4 marched to city 6 with 20 elements and force 50
008:10 blue wolf 5 marched to city 6 with 20 elements and force 50
008:10 red wolf 3 marched to city 7 with 10 elements and force 50
008:10 blue lion 6 marched to city 7 with 10 elements and force 50
008:10 blue dragon 7 marched to city 8 with 20 elements and force 50
008:10 blue ninja 8 marched to city 9 with 20 elements and force 50
008:10 blue iceman 9 marched to city 10 with 27 elements and force 50
008:35 blue wolf 5 took 1 sword from red ninja 4 in city 6
008:35 red wolf 3 took 1 sword from blue lion 6 in city 7
008:40 red ninja 4 killed blue wolf 5 in city 6 remaining 10 elements
008:40 red wolf 3 killed blue lion 6 in city 7 remaining 10 elements
008:50 5820 elements in red headquarter
008:50 5820 elements in blue headquarter
008:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
008:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
008:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
008:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 21 elements
008:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
008:55 red ninja 4 has 1 sword 1 bomb 2 arrow and 10 elements
008:55 red wolf 3 has 1 sword 0 bomb 0 arrow and 10 elements
008:55 blue dragon 7 has 0 sword 1 bomb 0 arrow and 20 elements
008:55 blue ninja 8 has 1 sword 0 bomb 1 arrow and 20 elements
008:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 27 elements
009:00 red dragon 10 born
009:00 blue wolf 10 born
009:10 red dragon 10 marched to city 1 with 20 elements and force 50
009:10 red ninja 9 marched to city 2 with 20 elements and force 50
009:10 red wolf 8 marched to city 3 with 20 elements and force 50
009:10 red lion 7 marched to city 4 with 10 elements and force 50
009:10 red iceman 6 marched to city 5 with 19 elements and force 50
009:10 red dragon 5 marched to city 6 with 20 elements and force 50
009:10 red ninja 4 marched to city 7 with 10 elements and force 50
009:10 blue dragon 7 marched to city 7 with 20 elements and force 50
009:10 red wolf 3 marched to city 8 with 10 elements and force 50
009:10 blue ninja 8 marched to city 8 with 20 elements and force 50
009:10 blue iceman 9 marched to city 9 with 25 elements and force 50
009:10 blue wolf 10 marched to city 10 with 20 elements and force 50
009:35 red wolf 3 took 1 sword from blue ninja 8 in city 8
009:40 both red ninja 4 and blue dragon 7 died in city 7
009:40 blue ninja 8 killed red wolf 3 in city 8 remaining 20 elements
009:50 5800 elements in red headquarter
009:50 5800 elements in blue headquarter
009:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
009:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
009:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
009:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
009:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 19 elements
009:55 red dragon 5 has 0 sword 0 bomb 1 arrow and 20 elements
009:55 blue ninja 8 has 2 sword 0 bomb 1 arrow and 20 elements
009:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 25 elements
009:55 blue wolf 10 has 0 sword 0 bomb 0 arrow and 20 elements
010:00 red iceman 11 born
010:00 blue lion 11 born
Its loyalty is 5790
010:10 red iceman 11 marched to city 1 with 27 elements and force 50
010:10 red dragon 10 marched to city 2 with 20 elements and force 50
010:10 red ninja 9 marched to city 3 with 20 elements and force 50
010:10 red wolf 8 marched to city 4 with 20 elements and force 50
010:10 red lion 7 marched to city 5 with 10 elements and force 50
010:10 red iceman 6 marched to city 6 with 18 elements and force 50
010:10 red dragon 5 marched to city 7 with 20 elements and force 50
010:10 blue ninja 8 marched to city 7 with 20 elements and force 50
010:10 blue iceman 9 marched to city 8 with 23 elements and force 50
010:10 blue wolf 10 marched to city 9 with 20 elements and force 50
010:10 blue lion 11 marched to city 10 with 10 elements and force 50
010:40 red dragon 5 killed blue ninja 8 in city 7 remaining 10 elements
010:40 red dragon 5 yelled in city 7
010:50 5770 elements in red headquarter
010:50 5790 elements in blue headquarter
010:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 27 elements
010:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
010:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
010:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
010:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
010:55 red iceman 6 has 1 sword 0 bomb 0 arrow and 18 elements
010:55 red dragon 5 has 2 sword 0 bomb 1 arrow and 10 elements
010:55 blue iceman 9 has 1 sword 0 bomb 0 arrow and 23 elements
010:55 blue wolf 10 has 0 sword 0 bomb 0 arrow and 20 elements
010:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:00 red lion 12 born
Its loyalty is 5760
011:00 blue dragon 12 born
011:10 red lion 12 marched to city 1 with 10 elements and force 50
011:10 red iceman 11 marched to city 2 with 25 elements and force 50
011:10 red dragon 10 marched to city 3 with 20 elements and force 50
011:10 red ninja 9 marched to city 4 with 20 elements and force 50
011:10 red wolf 8 marched to city 5 with 20 elements and force 50
011:10 red lion 7 marched to city 6 with 10 elements and force 50
011:10 red iceman 6 marched to city 7 with 17 elements and force 50
011:10 blue iceman 9 marched to city 7 with 21 elements and force 50
011:10 red dragon 5 marched to city 8 with 10 elements and force 50
011:10 blue wolf 10 marched to city 8 with 20 elements and force 50
011:10 blue lion 11 marched to city 9 with 10 elements and force 50
011:10 blue dragon 12 marched to city 10 with 20 elements and force 50
011:35 blue wolf 10 took 2 sword from red dragon 5 in city 8
011:40 blue iceman 9 killed red iceman 6 in city 7 remaining 1 elements
011:40 blue wolf 10 killed red dragon 5 in city 8 remaining 20 elements
011:50 5760 elements in red headquarter
011:50 5770 elements in blue headquarter
011:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
011:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 25 elements
011:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
011:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
011:55 red wolf 8 has 0 sword 0 bomb 0 arrow and 20 elements
011:55 red lion 7 has 0 sword 1 bomb 0 arrow and 10 elements
011:55 blue iceman 9 has 2 sword 0 bomb 0 arrow and 1 elements
011:55 blue wolf 10 has 2 sword 0 bomb 1 arrow and 20 elements
011:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
011:55 blue dragon 12 has 1 sword 0 bomb 0 arrow and 20 elements
012:00 red wolf 13 born
012:00 blue ninja 13 born
012:10 red wolf 13 marched to city 1 with 20 elements and force 50
012:10 red lion 12 marched to city 2 with 10 elements and force 50
012:10 red iceman 11 marched to city 3 with 23 elements and force 50
012:10 red dragon 10 marched to city 4 with 20 elements and force 50
012:10 red ninja 9 marched to city 5 with 20 elements and force 50
012:10 red wolf 8 marched to city 6 with 20 elements and force 50
012:10 blue iceman 9 marched to city 6 with 1 elements and force 50
012:10 red lion 7 marched to city 7 with 10 elements and force 50
012:10 blue wolf 10 marched to city 7 with 20 elements and force 50
012:10 blue lion 11 marched to city 8 with 10 elements and force 50
012:10 blue dragon 12 marched to city 9 with 20 elements and force 50
012:10 blue ninja 13 marched to city 10 with 20 elements and force 50
012:35 red wolf 8 took 2 sword from blue iceman 9 in city 6
012:35 blue wolf 10 took 1 bomb from red lion 7 in city 7
012:40 red wolf 8 killed blue iceman 9 in city 6 remaining 20 elements
012:40 blue wolf 10 killed red lion 7 in city 7 remaining 20 elements
012:50 5740 elements in red headquarter
012:50 5750 elements in blue headquarter
012:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
012:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
012:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 23 elements
012:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
012:55 red ninja 9 has 1 sword 1 bomb 0 arrow and 20 elements
012:55 red wolf 8 has 2 sword 0 bomb 0 arrow and 20 elements
012:55 blue wolf 10 has 2 sword 1 bomb 1 arrow and 20 elements
012:55 blue lion 11 has 0 sword 0 bomb 1 arrow and 10 elements
012:55 blue dragon 12 has 1 sword 0 bomb 0 arrow and 20 elements
012:55 blue ninja 13 has 0 sword 1 bomb 1 arrow and 20 elements
013:00 red ninja 14 born
013:00 blue iceman 14 born
013:10 red ninja 14 marched to city 1 with 20 elements and force 50
013:10 red wolf 13 marched to city 2 with 20 elements and force 50
013:10 red lion 12 marched to city 3 with 10 elements and force 50
013:10 red iceman 11 marched to city 4 with 21 elements and force 50
013:10 red dragon 10 marched to city 5 with 20 elements and force 50
013:10 red ninja 9 marched to city 6 with 20 elements and force 50
013:10 blue wolf 10 marched to city 6 with 20 elements and force 50
013:10 red wolf 8 marched to city 7 with 20 elements and force 50
013:10 blue lion 11 marched to city 7 with 10 elements and force 50
013:10 blue dragon 12 marched to city 8 with 20 elements and force 50
013:10 blue ninja 13 marched to city 9 with 20 elements and force 50
013:10 blue iceman 14 marched to city 10 with 27 elements and force 50
013:35 blue wolf 10 took 1 sword from red ninja 9 in city 6
013:35 red wolf 8 took 1 arrow from blue lion 11 in city 7
013:40 red ninja 9 killed blue wolf 10 in city 6 remaining 10 elements
013:40 red wolf 8 killed blue lion 11 in city 7 remaining 20 elements
013:50 5720 elements in red headquarter
013:50 5720 elements in blue headquarter
013:55 red ninja 14 has 1 sword 0 bomb 1 arrow and 20 elements
013:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
013:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
013:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 21 elements
013:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
013:55 red ninja 9 has 3 sword 1 bomb 1 arrow and 10 elements
013:55 red wolf 8 has 2 sword 0 bomb 1 arrow and 20 elements
013:55 blue dragon 12 has 1 sword 0 bomb 0 arrow and 20 elements
013:55 blue ninja 13 has 0 sword 1 bomb 1 arrow and 20 elements
013:55 blue iceman 14 has 0 sword 0 bomb 1 arrow and 27 elements
014:00 red dragon 15 born
014:00 blue wolf 15 born
014:10 red dragon 15 marched to city 1 with 20 elements and force 50
014:10 red ninja 14 marched to city 2 with 20 elements and force 50
014:10 red wolf 13 marched to city 3 with 20 elements and force 50
014:10 red lion 12 marched to city 4 with 10 elements and force 50
014:10 red iceman 11 marched to city 5 with 19 elements and force 50
014:10 red dragon 10 marched to city 6 with 20 elements and force 50
014:10 red ninja 9 marched to city 7 with 10 elements and force 50
014:10 blue dragon 12 marched to city 7 with 20 elements and force 50
014:10 red wolf 8 marched to city 8 with 20 elements and force 50
014:10 blue ninja 13 marched to city 8 with 20 elements and force 50
014:10 blue iceman 14 marched to city 9 with 25 elements and force 50
014:10 blue wolf 15 marched to city 10 with 20 elements and force 50
014:35 red wolf 8 took 1 bomb from blue ninja 13 in city 8
014:40 blue dragon 12 killed red ninja 9 in city 7 remaining 10 elements
014:40 blue dragon 12 yelled in city 7
014:40 blue ninja 13 killed red wolf 8 in city 8 remaining 10 elements
014:50 5700 elements in red headquarter
014:50 5700 elements in blue headquarter
014:55 red dragon 15 has 1 sword 0 bomb 0 arrow and 20 elements
014:55 red ninja 14 has 1 sword 0 bomb 1 arrow and 20 elements
014:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
014:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
014:55 red iceman 11 has 0 sword 0 bomb 1 arrow and 19 elements
014:55 red dragon 10 has 0 sword 1 bomb 0 arrow and 20 elements
014:55 blue dragon 12 has 4 sword 1 bomb 1 arrow and 10 elements
014:55 blue ninja 13 has 2 sword 1 bomb 1 arrow and 10 elements
014:55 blue iceman 14 has 0 sword 0 bomb 1 arrow and 25 elements
014:55 blue wolf 15 has 0 sword 0 bomb 0 arrow and 20 elements
015:00 red iceman 16 born
015:00 blue lion 16 born
Its loyalty is 5690
015:10 red iceman 16 marched to city 1 with 27 elements and force 50
015:10 red dragon 15 marched to city 2 with 20 elements and force 50
015:10 red ninja 14 marched to city 3 with 20 elements and force 50
015:10 red wolf 13 marched to city 4 with 20 elements and force 50
015:10 red lion 12 marched to city 5 with 10 elements and force 50
015:10 red iceman 11 marched to city 6 with 18 elements and force 50
015:10 blue dragon 12 marched to city 6 with 10 elements and force 50
015:10 red dragon 10 marched to city 7 with 20 elements and force 50
015:10 blue ninja 13 marched to city 7 with 10 elements and force 50
015:10 blue iceman 14 marched to city 8 with 23 elements and force 50
015:10 blue wolf 15 marched to city 9 with 20 elements and force 50
015:10 blue lion 16 marched to city 10 with 10 elements and force 50
015:40 red iceman 11 killed blue dragon 12 in city 6 remaining 8 elements
015:40 red dragon 10 killed blue ninja 13 in city 7 remaining 10 elements
015:40 red dragon 10 yelled in city 7
015:50 5670 elements in red headquarter
015:50 5690 elements in blue headquarter
015:55 red iceman 16 has 0 sword 1 bomb 0 arrow and 27 elements
015:55 red dragon 15 has 1 sword 0 bomb 0 arrow and 20 elements
015:55 red ninja 14 has 1 sword 0 bomb 1 arrow and 20 elements
015:55 red wolf 13 has 0 sword 0 bomb 0 arrow and 20 elements
015:55 red lion 12 has 1 sword 0 bomb 0 arrow and 10 elements
015:55 red iceman 11 has 4 sword 1 bomb 2 arrow and 8 elements
015:55 red dragon 10 has 2 sword 1 bomb 1 arrow and 10 elements
015:55 blue iceman 14 has 0 sword 0 bomb 1 arrow and 23 elements
015:55 blue wolf 15 has 0 sword 0 bomb 0 arrow and 20 elements
015:55 blue lion 16 has 0 sword 1 bomb 0 arrow and 10 elements
016:00 red lion 17 born
Its loyalty is 5660
016:00 blue dragon 17 born
016:10 red lion 17 marched to city 1 with 10 elements and force 50
016:10 red iceman 16 marched to city 2 with 25 elements and force 50
016:10 red dragon 15 marched to city 3 with 20 elements and force 50
016:10 red ninja 14 marched to city 4 with 20 elements and force 50
016:10 red wolf 13 marched to city 5 with 20 elements and force 50
016:10 red lion 12 marched to city 6 with 10 elements and force 50
016:10 red iceman 11 marched to city 7 with 8 elements and force 50
016:10 blue iceman 14 marched to city 7 with 21 elements and force 50
016:10 red dragon 10 marched to city 8 with 10 elements and force 50
016:10 blue wolf 15 marched to city 8 with 20 elements and force 50
016:10 blue lion 16 marched to city 9 with 10 elements and force 50
016:10 blue dragon 17 marched to city 10 with 20 elements and force 50
016:35 blue wolf 15 took 2 sword from red dragon 10 in city 8
016:40 blue iceman 14 killed red iceman 11 in city 7 remaining 11 elements
016:40 blue wolf 15 killed red dragon 10 in city 8 remaining 20 elements
Case 10:
000:50 2 elements in red headquarter
000:50 2 elements in blue headquarter
001:50 2 elements in red headquarter
001:50 2 elements in blue headquarter
002:50 2 elements in red headquarter
002:50 2 elements in blue headquarter
003:50 2 elements in red headquarter
003:50 2 elements in blue headquarter
004:50 2 elements in red headquarter
004:50 2 elements in blue headquarter
005:50 2 elements in red headquarter
005:50 2 elements in blue headquarter
006:50 2 elements in red headquarter
006:50 2 elements in blue headquarter
007:50 2 elements in red headquarter
007:50 2 elements in blue headquarter
008:50 2 elements in red headquarter
008:50 2 elements in blue headquarter
009:50 2 elements in red headquarter
009:50 2 elements in blue headquarter
010:50 2 elements in red headquarter
010:50 2 elements in blue headquarter
011:50 2 elements in red headquarter
011:50 2 elements in blue headquarter
012:50 2 elements in red headquarter
012:50 2 elements in blue headquarter
013:50 2 elements in red headquarter
013:50 2 elements in blue headquarter
014:50 2 elements in red headquarter
014:50 2 elements in blue headquarter
015:50 2 elements in red headquarter
015:50 2 elements in blue headquarter
Case 11:
000:50 6 elements in red headquarter
000:50 6 elements in blue headquarter
001:50 6 elements in red headquarter
001:50 6 elements in blue headquarter
002:50 6 elements in red headquarter
002:50 6 elements in blue headquarter
003:50 6 elements in red headquarter
003:50 6 elements in blue headquarter
004:50 6 elements in red headquarter
004:50 6 elements in blue headquarter
005:50 6 elements in red headquarter
005:50 6 elements in blue headquarter
006:50 6 elements in red headquarter
006:50 6 elements in blue headquarter
007:50 6 elements in red headquarter
007:50 6 elements in blue headquarter
008:50 6 elements in red headquarter
008:50 6 elements in blue headquarter
009:50 6 elements in red headquarter
009:50 6 elements in blue headquarter
010:50 6 elements in red headquarter
010:50 6 elements in blue headquarter
011:50 6 elements in red headquarter
011:50 6 elements in blue headquarter
012:50 6 elements in red headquarter
012:50 6 elements in blue headquarter
013:50 6 elements in red headquarter
013:50 6 elements in blue headquarter
014:50 6 elements in red headquarter
014:50 6 elements in blue headquarter
015:50 6 elements in red headquarter
015:50 6 elements in blue headquarter
016:50 6 elements in red headquarter
016:50 6 elements in blue headquarter
017:50 6 elements in red headquarter
017:50 6 elements in blue headquarter
018:50 6 elements in red headquarter
018:50 6 elements in blue headquarter
019:50 6 elements in red headquarter
019:50 6 elements in blue headquarter
020:50 6 elements in red headquarter
020:50 6 elements in blue headquarter
021:50 6 elements in red headquarter
021:50 6 elements in blue headquarter
022:50 6 elements in red headquarter
022:50 6 elements in blue headquarter
023:50 6 elements in red headquarter
023:50 6 elements in blue headquarter
024:50 6 elements in red headquarter
024:50 6 elements in blue headquarter
025:50 6 elements in red headquarter
025:50 6 elements in blue headquarter
026:50 6 elements in red headquarter
026:50 6 elements in blue headquarter
027:50 6 elements in red headquarter
027:50 6 elements in blue headquarter
028:50 6 elements in red headquarter
028:50 6 elements in blue headquarter
029:50 6 elements in red headquarter
029:50 6 elements in blue headquarter
030:50 6 elements in red headquarter
030:50 6 elements in blue headquarter
031:50 6 elements in red headquarter
031:50 6 elements in blue headquarter
032:50 6 elements in red headquarter
032:50 6 elements in blue headquarter
033:50 6 elements in red headquarter
033:50 6 elements in blue headquarter
034:50 6 elements in red headquarter
034:50 6 elements in blue headquarter
035:50 6 elements in red headquarter
035:50 6 elements in blue headquarter
036:50 6 elements in red headquarter
036:50 6 elements in blue headquarter
037:50 6 elements in red headquarter
037:50 6 elements in blue headquarter
038:50 6 elements in red headquarter
038:50 6 elements in blue headquarter
039:50 6 elements in red headquarter
039:50 6 elements in blue headquarter
040:50 6 elements in red headquarter
040:50 6 elements in blue headquarter
041:50 6 elements in red headquarter
041:50 6 elements in blue headquarter
042:50 6 elements in red headquarter
042:50 6 elements in blue headquarter
043:50 6 elements in red headquarter
043:50 6 elements in blue headquarter
044:50 6 elements in red headquarter
044:50 6 elements in blue headquarter
045:50 6 elements in red headquarter
045:50 6 elements in blue headquarter
046:50 6 elements in red headquarter
046:50 6 elements in blue headquarter
047:50 6 elements in red headquarter
047:50 6 elements in blue headquarter
048:50 6 elements in red headquarter
048:50 6 elements in blue headquarter
049:50 6 elements in red headquarter
049:50 6 elements in blue headquarter
050:50 6 elements in red headquarter
050:50 6 elements in blue headquarter
051:50 6 elements in red headquarter
051:50 6 elements in blue headquarter
052:50 6 elements in red headquarter
052:50 6 elements in blue headquarter
053:50 6 elements in red headquarter
053:50 6 elements in blue headquarter
054:50 6 elements in red headquarter
054:50 6 elements in blue headquarter
055:50 6 elements in red headquarter
055:50 6 elements in blue headquarter
056:50 6 elements in red headquarter
056:50 6 elements in blue headquarter
057:50 6 elements in red headquarter
057:50 6 elements in blue headquarter
058:50 6 elements in red headquarter
058:50 6 elements in blue headquarter
059:50 6 elements in red headquarter
059:50 6 elements in blue headquarter
060:50 6 elements in red headquarter
060:50 6 elements in blue headquarter
061:50 6 elements in red headquarter
061:50 6 elements in blue headquarter
062:50 6 elements in red headquarter
062:50 6 elements in blue headquarter
063:50 6 elements in red headquarter
063:50 6 elements in blue headquarter
064:50 6 elements in red headquarter
064:50 6 elements in blue headquarter
065:50 6 elements in red headquarter
065:50 6 elements in blue headquarter
066:50 6 elements in red headquarter
066:50 6 elements in blue headquarter
067:50 6 elements in red headquarter
067:50 6 elements in blue headquarter
068:50 6 elements in red headquarter
068:50 6 elements in blue headquarter
069:50 6 elements in red headquarter
069:50 6 elements in blue headquarter
070:50 6 elements in red headquarter
070:50 6 elements in blue headquarter
071:50 6 elements in red headquarter
071:50 6 elements in blue headquarter
072:50 6 elements in red headquarter
072:50 6 elements in blue headquarter
073:50 6 elements in red headquarter
073:50 6 elements in blue headquarter
074:50 6 elements in red headquarter
074:50 6 elements in blue headquarter
075:50 6 elements in red headquarter
075:50 6 elements in blue headquarter
076:50 6 elements in red headquarter
076:50 6 elements in blue headquarter
077:50 6 elements in red headquarter
077:50 6 elements in blue headquarter
078:50 6 elements in red headquarter
078:50 6 elements in blue headquarter
079:50 6 elements in red headquarter
079:50 6 elements in blue headquarter
080:50 6 elements in red headquarter
080:50 6 elements in blue headquarter
081:50 6 elements in red headquarter
081:50 6 elements in blue headquarter
082:50 6 elements in red headquarter
082:50 6 elements in blue headquarter
083:50 6 elements in red headquarter
083:50 6 elements in blue headquarter
084:50 6 elements in red headquarter
084:50 6 elements in blue headquarter
085:50 6 elements in red headquarter
085:50 6 elements in blue headquarter
086:50 6 elements in red headquarter
086:50 6 elements in blue headquarter
087:50 6 elements in red headquarter
087:50 6 elements in blue headquarter
088:50 6 elements in red headquarter
088:50 6 elements in blue headquarter
089:50 6 elements in red headquarter
089:50 6 elements in blue headquarter
090:50 6 elements in red headquarter
090:50 6 elements in blue headquarter
091:50 6 elements in red headquarter
091:50 6 elements in blue headquarter
092:50 6 elements in red headquarter
092:50 6 elements in blue headquarter
093:50 6 elements in red headquarter
093:50 6 elements in blue headquarter
094:50 6 elements in red headquarter
094:50 6 elements in blue headquarter
095:50 6 elements in red headquarter
095:50 6 elements in blue headquarter
096:50 6 elements in red headquarter
096:50 6 elements in blue headquarter
097:50 6 elements in red headquarter
097:50 6 elements in blue headquarter
098:50 6 elements in red headquarter
098:50 6 elements in blue headquarter
099:50 6 elements in red headquarter
099:50 6 elements in blue headquarter

C/C++新手学习项目(三) 魔兽世界之三:开战相关推荐

  1. 【深度学习项目三】ResNet50多分类任务【十二生肖分类】

    相关文章: [深度学习项目一]全连接神经网络实现mnist数字识别 [深度学习项目二]卷积神经网络LeNet实现minst数字识别 [深度学习项目三]ResNet50多分类任务[十二生肖分类] 『深度 ...

  2. Python新手学习(三)

    11.判断(布尔) 检查是否相等和不相等,对于字符串来说,大小写也是需要注意的点,大小写不同会被判断为不相等. laptop='dell' print(laptop=='dell') print(la ...

  3. 『深度学习项目四』基于ResNet101人脸特征点检测

    相关文章: [深度学习项目一]全连接神经网络实现mnist数字识别 [深度学习项目二]卷积神经网络LeNet实现minst数字识别 [深度学习项目三]ResNet50多分类任务[十二生肖分类] 『深度 ...

  4. 【深度学习项目五】:利用LSTM网络进行情感分析(NLP)

    相关文章: [深度学习项目一]全连接神经网络实现mnist数字识别](https://blog.csdn.net/sinat_39620217/article/details/116749255?sp ...

  5. 【AI初识境】给深度学习新手开始项目时的10条建议

    这是专栏<AI初识境>的第12篇文章.所谓初识,就是对相关技术有基本了解,掌握了基本的使用方法. 在成为合格的深度学习算法工程师,尤其是工业界能够实战的调参选手之前,总会踏足很多的坑. 今 ...

  6. pyqt快速编程指南 源码_适合 C++ 新手学习的开源项目——在 GitHub 学编程

    作者:HelloGitHub-小鱼干 俗话说:万事开头难,学习编程也是一样.在 HelloGitHub 的群里,经常遇到有小伙伴询问编程语言如何入门方面的问题,如: 我要学习某一门编程语言,有什么开源 ...

  7. 自己搭建一个前后端的项目-适合新手学习

    前提:这篇文章不适合大佬去看,因为我自己也是比较菜的.我只是分享下我的一些经验. 接下来我将会介绍三个方面: 小程序端 :想要学习小程序的同学可以看看 你能学习到什么: 页面的布局,对返回的数据进行操 ...

  8. VUE项目学习(三):win10版nginx部署vue项目

    VUE项目学习(三):win10版nginx部署vue项目 niginx的安装和启停操作参照博客:https://blog.csdn.net/qq_26666947/article/details/1 ...

  9. Java基础学习:尚硅谷项目三 开发团队调度软件

    Java基础学习:尚硅谷项目三 开发团队调度软件 一.软件功能与结构设计 1. 软件功能 该软件实现以下功能: 软件启动时,根据给定的数据创建公司部分成员列表(数组) 根据菜单提示,基于现有的公司成员 ...

最新文章

  1. 折返(Reentrancy)VS线程安全(Thread safety)
  2. Python入门:常用模块—logging模块
  3. TensorFlow版的“Hello World”,运行官网第一个例子
  4. layuiAdmin打开新窗口、新标签页
  5. Android之页面有变化用onWindowFocusChanged来监听权限是否开启
  6. 迷你搜索引擎–使用Neo4j,Crawler4j,Graphstream和Encog的基础知识
  7. 程序2:word count
  8. 目前效果最好、应用较广且比较成熟的语音识别模型是什么?
  9. oracle 10g 高级复制,Oracle9i和Oracle10g之间构建高级复制环境的测试用例
  10. 带宽总结:3dB带宽、零点到零点带宽、均方根带宽等
  11. 如何能把 CAJ 格式文档转换成 PDF 格式?
  12. (2) [保护模式]段描述符
  13. quartz 2D 总结
  14. python学习笔记(字符串操作、字典操作、三级菜单实例)
  15. kernel_neon_begin
  16. 正在踏上正轨--新手菜鸟的前进之路
  17. android8.1系统静默安装问题(无须手动点击)
  18. 碱性干电池的内阻测试方法_干电池电动势和内阻的测量解读
  19. Windows 7单个程序音量控制
  20. 4.Docker 镜像加速器

热门文章

  1. SPM AC原点校正
  2. PS制作各种证件照及换背景色
  3. Android数据存储安全实践
  4. 聊聊ringbuffer
  5. fiddler抓取https,提示“CA 根证书不在受信任的存储区域”的解决方法
  6. java批量生成二维码图片,并打包成zip
  7. 部分软件安装界面出现乱码(奇形怪状的问号等)/文件打开异常/文件无法正常打开
  8. softmax回归中最大化似然和最小化交叉熵的等价性
  9. 网络爬虫在电商定价策略上的应用
  10. NOIP2018差点退役+心态爆炸杂思