BZOJ1972 【SDOI2010】 猪国杀 <模拟>

Problem

【SDOI2010】猪国杀

Time Limit: 1Sec1 Sec
Memory Limit: 64MB64 MB

题目描述 Description

  1. 概述
    《猪国杀》是一种多猪牌类回合制游戏,一共有三种角色:主猪,忠猪,反猪。
    每局游戏主猪有且只有一只,忠猪和反猪可以有多只,每只猪扮演一种角色。
  2. 游戏目的:
    ·主猪(MP):自己存活的情况下消灭所有的反猪。
    ·忠猪(ZP):不惜一切保护主猪,胜利条件与主猪相同。
    ·反猪(FP):杀死主猪。
  3. 游戏过程:
    ·游戏开始时候,每个玩家手里都会有4张牌,且体力上限和初始体力都是4。
    ·开始游戏时,从主猪开始,按照逆时针方向(数据中就是按照编号从1,2,3…n,1…的顺序)依次行动。
    ·每个玩家自己的回合可以分为2个阶段:
    ·摸牌阶段:
    ·从牌堆顶部摸两张牌,依次放到手牌的最右边。
    ·出牌阶段:
    ·你可以使用0张到任意张牌,每次使用牌的时候都使用最靠左的能够使用的牌。
    ·当然,要满足如下规则:
    ·1.如果没有猪哥连弩,每个出牌阶段只能使用一次“杀”来攻击。
    ·2.任何牌被使用后被弃置(武器是装备上)。
    ·被弃置的牌以后都不能再用,即与游戏无关。
  4. 各种牌介绍:
    ·每张手牌用一个字母表示,字母代表牌的种类。
    ·基本牌:
    『桃(P)』:
    ·在自己的回合内,如果自己的体力值不等于体力上限,那么使用一个桃可以为自己补充一点体力,否则不能使用桃。
    ·桃只能对自己使用。
    ·在自己的回合外,如果自己的血变为0或者更低,那么也可以使用。
    『杀(K)』:
    ·在自己的回合内,对攻击范围内除自己以外的一名角色使用。
    ·如果没有被『闪』抵消,则造成1点伤害。无论有无武器,杀的攻击范围都是1。
    『闪(D)』:
    ·当你受到杀的攻击时,可以弃置一张闪来抵消杀的效果。
    ·锦囊牌:
    『决斗(F)』:
    ·出牌阶段,对除自己以外任意一名角色使用,由目标角色先开始,自己和目标角色轮流弃置一张杀,首先没有杀可弃的一方受到1点伤害,另一方视为此伤害的来源。
    『南猪入侵(N)』:
    ·出牌阶段,对除你以外所有角色使用,按逆时针顺序从使用者下家开始依次结算,除非弃置一张杀,否则受到1点伤害。
    『万箭齐发(W)』:
    ·和南猪入侵类似,不过要弃置的不是杀而是闪。
    『无懈可击(J)』:
    ·在目标锦囊生效前抵消其效果。
    ·每次有一张锦囊即将生效时,从使用这张锦囊的猪开始,按照逆时针顺序,依次得到使用无懈可击的机会。
    ·效果:
    ·用于决斗时,决斗无效并弃置。
    ·用于南猪入侵或万箭齐发时,当结算到某个角色时才能使用,当前角色不需弃置牌并且不会受到伤害(仅对一个角色产生效果)。
    ·用于无懈可击时,成为目标的无懈可击被无效。
    ·装备牌:
    『猪哥连弩(Z)』:
    ·武器,攻击范围1,出牌阶段你可以使用任意张杀。
    ·同一时刻最多只能装一个武器。
    ·如果先前已经有了一把武器,那么之后再装武器的话,会弃置以前的武器来装现在的武器。
  5. 特殊事件及概念解释:
    ·伤害来源:
    ·杀、南猪入侵、万箭齐发的伤害来源均是使用该牌的猪。
    ·决斗的伤害来源如上。
    ·距离:
    ·两只猪的距离定义为沿着逆时针方向间隔的猪数+1。即初始时1和2的距离为1,但是2和1的距离就是n-1。
    ·注意一个角色的死亡会导致一些猪距离的改变;
    ·玩家死亡:
    ·如果该玩家的体力降到0或者更低,并且自己手中没有足够的桃使得自己的体力值回到1,那么就死亡了。
    ·死亡后所有的牌(装备区,手牌区)被弃置。
    ·奖励与惩罚:
    ·反猪死亡时,最后一个伤害来源处(即使是反猪)立即摸三张牌。
    ·忠猪死亡时,如果最后一个伤害来源是主猪,那么主猪所有装备牌、手牌被弃置。
    ·注意,一旦达成胜利条件,游戏立刻结束,因此即使会摸3张牌或者还有牌可以用也不用执行了。
  6. 几种行为:
    ·献殷勤:
    ·使用无懈可击挡下南猪入侵、万箭齐发、决斗。
    ·使用无懈可击抵消表敌意。
    ·表敌意:
    ·对某个角色使用杀、决斗。
    ·使用无懈可击抵消献殷勤。
    ·跳忠:
    ·即通过行动表示自己是忠猪。
    ·跳忠行动就是对主猪或对某只已经跳忠的猪献殷勤,或者对某只已经跳反的猪表敌意。
    ·跳反:
    ·即通过行动表示自己是反猪。
    ·跳反行动就是对主猪或对某只已经跳忠的猪表敌意,或者对某只已经跳反的猪献殷勤。
    ·忠猪不会跳反,反猪也不会跳忠。
    ·不管是忠猪还是反猪,能够跳必然跳。
  7. 行动准则:
    ·共性:
    ·每个角色如果手里有桃且生命值未满,那么必然吃掉。
    ·有南猪入侵、万箭齐发、必然使用。
    ·有装备必然装上。
    ·受到杀时,有闪必然弃置。
    ·响应南猪入侵或者万箭齐发时候,有杀/闪必然弃置。
    ·不会对未表明身份的猪献殷勤(包括自己)。
    ·特性:
    ·主猪:
    ·主猪会认为没有跳身份,且用南猪入侵/万箭齐发对自己造成伤害的猪是类反猪(没伤害到不算,注意类反猪并没有表明身份),如果之后跳了,那么主猪会重新认识这只猪。
    ·对于每种表敌意的方式,对逆时针方向能够执行到的第一只类反猪或者已跳反猪表;如果没有,那么就不表敌意。
    ·决斗时会不遗余力弃置杀。
    ·如果能对已经跳忠的猪或自己献殷勤,那么一定献。
    ·如果能够对已经跳反的猪表敌意,那么一定表。
    ·忠猪:
    ·对于每种表敌意的方式,对逆时针方向能够执行到的第一只已经跳反的猪表,如果没有,那么就不表敌意。
    ·决斗时,如果对方是主猪,那么不会弃置杀,否则,会不遗余力弃置杀。
    ·如果有机会对主猪或者已经跳忠的猪献殷勤,那么一定献。
    ·反猪:
    ·对于每种表敌意的方式,如果有机会则对主猪表,否则,对逆时针方向能够执行到的第一只已经跳忠的猪表,如果没有,那么就不表敌意。
    ·决斗时会不遗余力弃置杀。
    ·如果有机会对已经跳反的猪献殷勤,那么一定献。

现在,我们已经知道每只猪的角色、手牌,还有牌堆初始情况,并且假设每个角色会按照如下的行为准则进行游戏,你需要做的就是告诉小猪iPigiPig最后的结果。
限于iPigiPig只会用P++P++语言写A+BA+B,他请你用Pigcal(Pascal)Pigcal(Pascal)P(C)P(C)P++(C++)P++(C++)语言来帮他预测最后的结果。

输入描述 Input Description

输入文件第一行包含两个正整数nn(2n102\le n\le 10)和mm(m2000m\le 2000),分别代表玩家数和牌堆中牌的数量。数据保证牌的数量够用。
接下来nn行,每行55个字符串,依次表示对第ii只猪的角色和初始44张手牌描述。编号为11的肯定是主猪。
再接下来一行,一共mm个字符串,按照从牌堆顶部到牌堆底部的顺序描述每张牌。
所有的相邻的两个字符串都严格用11个空格隔开,行尾没有多余空格。

输出描述 Output Description

输出数据第一行包含一个字符串代表游戏结果。如果是主猪胜利,那么输出MPMP,否则输出FPFP。数据保证游戏总会结束。
接下来nn行,第ii行是对第ii只猪的手牌描述(注意只需要输出手牌),按照手牌从左往右的顺序输出,相邻两张牌用一个空格隔开,行末尾没有多余空格。如果这只猪已阵亡,那么只要输出DEADDEAD即可。注意如果要输出手牌而没有手牌的话,那么只需输出一个空行。

样例数据 Sample Data

Sample Input #1

1
2
3
4
5
3 10
MP D D F F
ZP N N N D
FP J J J J
F F D D J J F F K D

Sample Output #1

1
2
3
4
FP
DEAD
DEAD
J J J J J J D

数据范围及提示 Data Size & Hint

样例11说明:第一回合主猪没有目标可以表敌意;接下来忠猪使用了33张南猪入侵,主猪掉了33点体力,并认为该角色为类反猪,33号角色尽管手里有无懈可击,但是因为自己未表明身份,所以同样不能对自己用,乖乖掉33点体力;下一回合反猪无牌可出;接下来主猪对着类反猪爆发,使用44张决斗,忠猪死亡,结果主猪弃掉所有牌;下来反猪摸到一张杀直接杀死主猪获胜。
数据说明:一共2020组测试数据,每个点55分。10%10\%的数据没有锦囊牌,另外20%20\%的数据没有无懈可击。

如果觉得此题面不好看,请戳这里:https://mubu.com/doc/2707815814591da4

标签:模拟

Solution

本题是大模拟,题面很恶心,又长又绕,根本无法概括,不过读懂以后按序操作还是比较容易的。
坑点如下:

  1. 如果牌堆中没牌了,那么需要不断的摸取最后一张牌
  2. 无懈可击的使用:可以用来帮助身份已明且和自己一伙的人抵挡南猪入侵、万箭齐发、决杀等效果,或者帮助其抵消对方无懈可击的效果。一旦使出无懈可击即可表明自己的身份,表明身份后类反猪的身份会随之消失。注意无懈可击的使用顺序是从锦囊牌的出牌者开始按照逆时针的顺序进行出牌的。
  3. 一只猪死亡后立刻退场,不会再进行任何操作,所有手牌弃置。如果此时游戏结束,那么一切操作都暂停。
  4. 出完一张牌后(除桃)需要重新扫描所有的手牌,因为每次出牌可能会导致不同的猪身份的改变,进而前面跳过的牌可能有机会打出。
  5. 寻找打出杀得下家时要跳过已经死亡的猪。
  6. 打出决斗,无论最后是否生效,即认为身份表面。对于主猪对忠猪发起的决斗,忠猪乖乖掉血。

奉献几组样例,可以自测:

Sample #1

Input

1
2
3
4
5
3 10
MP D D F F
ZP N N N D
FP J J J J
F F D D J J F F K D

Output

1
2
3
4
FP
DEAD
DEAD
J J J J J J D
Sample #2

Input

1
2
3
4
5
6
7
5 10
MP W D F K
ZP N N D D
FP F W W K
ZP K K N D
FP K D P W
J K W K D N N K J N

Output

1
2
3
4
5
MP
F N
D
DEAD
DEAD
Sample #3

Input

1
2
3
4
5
3 4
MP J J K N
ZP J D K W
FP P N P K
J J K W

Output

1
2
3
MP
K K
DEAD
Sample #4

Input

1
2
3
4
5
3 10
MP W D J W
ZP J P D N
FP N D F F
J D N N F J J D K W

Output

1
2
3
MP
D J D
DEAD
Sample #5

Input

1
2
3
4
5
3 1
MP D N F K
ZP F W F N
FP D N N D
K

Output

1
2
3
4
MP
K
F K K
DEAD

Code

注释版

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#include <iostream>
#include <cstdio>
#define MAX_N 10
#define MAX_M 2000
using namespace std;
int n, m, Type[MAX_N+5]; //真实身份(1主公 2忠臣 3反贼)
int lft; bool GameOver; //剩余反贼、游戏结束标记
char Heap[MAX_M*2+5]; int CurPos; //牌堆
int bef[MAX_M*5+5], nxt[MAX_M*5+5], cnt; char c[MAX_M*5+5]; //手牌
char Draw() {CurPos = CurPos == m ? m : CurPos+1; return Heap[CurPos];} //摸牌
void Attack(int, int); void Duel(int, int); void Invade(int); void Arrow(int);
struct Player {
int id, Sta; //编号、目前身份(0没跳 1类反 2跳忠 3跳反)
int head, tail, now, tp; //手牌链表
int cntWX, cntA, cntP, cntS; //手中无懈可击、杀、桃、闪的数量
int blood, atk, pre, suc; //血量、首要攻击目标、存活的上一头猪、存活的下一头猪
bool dead, equip; //是否死亡、是否装备连弩
void Bonus() { //奖励
c[++cnt] = Draw(), bef[cnt] = tail;
if (head == 0) head = tail = cnt;
else nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++;
if (c[cnt] == 'K') cntA++;
if (c[cnt] == 'P') cntP++;
if (c[cnt] == 'D') cntS++;
c[++cnt] = Draw(), bef[cnt] = tail;
nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++;
if (c[cnt] == 'K') cntA++;
if (c[cnt] == 'P') cntP++;
if (c[cnt] == 'D') cntS++;
c[++cnt] = Draw(), bef[cnt] = tail;
nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++;
if (c[cnt] == 'K') cntA++;
if (c[cnt] == 'P') cntP++;
if (c[cnt] == 'D') cntS++;
}
void Punish() { //惩罚
head = tail = now = cntWX = cntA = cntP = cntS = 0, equip = false;
}
void DrawSession() { //摸牌阶段
c[++cnt] = Draw(), bef[cnt] = tail;
if (head == 0) head = tail = cnt;
else nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++;
if (c[cnt] == 'K') cntA++;
if (c[cnt] == 'P') cntP++;
if (c[cnt] == 'D') cntS++;
c[++cnt] = Draw(), bef[cnt] = tail;
nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++;
if (c[cnt] == 'K') cntA++;
if (c[cnt] == 'P') cntP++;
if (c[cnt] == 'D') cntS++;
}
void Use(int x) { //使用一张牌
if (c[x] == 'J') cntWX--;
if (c[x] == 'K') cntA--;
if (c[x] == 'P') cntP--;
if (c[x] == 'D') cntS--;
if (x == head && x == tail) head = tail = 0;
else if (x == head) head = nxt[x], bef[nxt[x]] = 0;
else if (x == tail) tail = bef[x], nxt[bef[x]] = 0;
else bef[nxt[x]] = bef[x], nxt[bef[x]] = nxt[x];
}
char GetNxt() { //返回下一张牌
if (!now) return 0;
tp = now, now = nxt[now];
return c[tp];
}
int findWX() { //找下一张无懈可击
now = head; char tmp;
while (tmp = GetNxt()) if (tmp == 'J') return tp; return 0;
}
int findA() { //找下一张杀
now = head; char tmp;
while (tmp = GetNxt()) if (tmp == 'K') return tp; return 0;
}
int findP() { //找下一张桃
now = head; char tmp;
while (tmp = GetNxt()) if (tmp == 'P') return tp; return 0;
}
int findS() { //找下一张闪
now = head; char tmp;
while (tmp = GetNxt()) if (tmp == 'D') return tp; return 0;
}
bool tryWX() { //尝试出无懈可击
if (cntWX) {Use(findWX()); return true;}
return false;
}
bool tryA() { //尝试出杀
if (cntA) {Use(findA()); return true;}
return false;
}
bool tryS() { //尝试出闪
if (cntS) {Use(findS()); return true;}
return false;
}
bool tryP() { //尝试出桃
if (cntP) {Use(findP()); return true;}
return false;
}
void Round() {
DrawSession(); now = head;
bool atked = false; char tmp;
while ((tmp = GetNxt()) && !GameOver) {
//cout << tmp << " ";
if (tmp == 'D' || tmp == 'J') continue;
if (tmp == 'K' && atk == suc && (!atked || equip)) {
Use(tp), Attack(id, atk), now = head, atked = true;
if (GameOver) return;
}
if (tmp == 'P' && blood != 4) Use(tp), blood++;
if (tmp == 'F') {
if (!atk) continue;
Use(tp);
if (Type[id] == 3) Duel(id, 1);
else Duel(id, atk);
now = head;
if (GameOver || dead) return;
}
if (tmp == 'N') {
Use(tp), Invade(id), now = head;
if (GameOver) return;
}
if (tmp == 'W') {
Use(tp), Arrow(id), now = head;
if (GameOver) return;
}
if (tmp == 'Z') Use(tp), equip = true, now = head;
}
//cout << endl;
}
void Output() {
if (dead) {printf("DEAD\n"); return;}
for (; head; head = nxt[head])
if (head == tail) cout << c[head];
else cout << c[head] << ' ';
printf("\n");
}
} pig[MAX_N+5];
void FindAtk(int x) {
int y = pig[x].suc;
if (Type[x] == 1) {
while (y != x) {
if (pig[y].Sta == 1 || pig[y].Sta == 3) {
pig[x].atk = y; return;
}
y = pig[y].suc;
}
pig[x].atk = 0;
}
if (Type[x] == 2) {
while (y != x) {
if (pig[y].Sta == 3) {
pig[x].atk = y; return;
}
y = pig[y].suc;
}
pig[x].atk = 0;
}
if (Type[x] == 3) {
while (y != x) {
if (Type[y] == 1 || pig[y].Sta == 2) {
pig[x].atk = y; return;
}
y = pig[y].suc;
}
pig[x].atk = 0;
}
}
void Maintain() {
int x = pig[1].suc; FindAtk(1);
while (x != 1) FindAtk(x), x = pig[x].suc;
}
void Kill(int x, int y) { //杀死对方
pig[y].dead = true;
if (Type[y] == 1) {GameOver = true; return;}
if (Type[y] == 3) {
if (--lft == 0) {GameOver = true; return;}
pig[x].Bonus();
}
if (Type[x] == 1 && Type[y] == 2) pig[x].Punish();
int PRE = pig[y].pre, SUC = pig[y].suc;
pig[PRE].suc = SUC, pig[SUC].pre = PRE;
Maintain();
}
void Hurt(int x, int y) { //命中对方
if (--pig[y].blood == 0)
if (pig[y].tryP()) pig[y].blood++;
else Kill(x, y);
}
void Attack(int x, int y) { //杀
if (Type[x] != 1 && pig[x].Sta < 2) {
if (Type[y] == 3) pig[x].Sta = 2;
else pig[x].Sta = 3;
Maintain();
}
if (!pig[y].tryS()) Hurt(x, y);
}
bool WXcycle(int st, bool YType) { //无懈可击
int last = st, x = st; bool ORI = YType;
if (YType == (Type[x] == 3) && pig[x].tryWX()) {
last = x, YType ^= 1;
if (pig[x].Sta <= 2) pig[x].Sta = 3-YType, Maintain();
}
x = pig[x].suc;
while (x != last) {
if (YType == (Type[x] == 3) && pig[x].tryWX()) {
last = x, YType ^= 1;
if (pig[x].Sta <= 2) pig[x].Sta = 3-YType, Maintain();
}
x = pig[x].suc;
}
return ORI != YType;
}
void Duel(int x, int y) { //决斗
if (Type[x] != 1 && pig[x].Sta < 2) {
if (Type[y] == 3) pig[x].Sta = 2;
else pig[x].Sta = 3;
Maintain();
}
if (Type[y] == 1 || pig[y].Sta >= 2)
if (Type[y] == 1 || pig[y].Sta == 2) {
if (WXcycle(x, 0)) return;
} else {
if (WXcycle(x, 1)) return;
}
if (Type[x] == 1 && Type[y] == 2) Hurt(x, y);
else for (;;) {
if (!pig[y].tryA()) {Hurt(x, y); return;}
if (!pig[x].tryA()) {Hurt(y, x); return;}
}
}
void Invade(int x) { //南猪入侵
int y = pig[x].suc;
while (y != x) {
if (Type[y] == 1 || pig[y].Sta >= 2)
if (Type[y] == 1 || pig[y].Sta == 2) {
if (WXcycle(x, 0)) {y = pig[y].suc; continue;}
} else {
if (WXcycle(x, 1)) {y = pig[y].suc; continue;}
}
if (!pig[y].tryA()) {
Hurt(x, y); if (GameOver) return;
if (y == 1 && pig[x].Sta == 0) pig[x].Sta = 1, Maintain();
}
y = pig[y].suc;
}
}
void Arrow(int x) { //万箭齐发
int y = pig[x].suc;
while (y != x) {
if (Type[y] == 1 || pig[y].Sta >= 2)
if (Type[y] == 1 || pig[y].Sta == 2) {
if (WXcycle(x, 0)) {y = pig[y].suc; continue;}
} else {
if (WXcycle(x, 1)) {y = pig[y].suc; continue;}
}
if (!pig[y].tryS()) {
Hurt(x, y); if (GameOver) return;
if (y == 1 && pig[x].Sta == 0) pig[x].Sta = 1, Maintain();
}
y = pig[y].suc;
}
}
int main() {
scanf("%d%d", &n, &m); char s[2]; int tot = 0;
for (int i = n; i > 1; i--) pig[i].pre = i-1; pig[1].pre = n;
for (int i = 1; i < n; i++) pig[i].suc = i+1; pig[n].suc = 1;
for (int i = 1; i <= n; i++) {
scanf("%s", s);
if (s[0] == 'M') Type[i] = 1;
if (s[0] == 'Z') Type[i] = 2;
if (s[0] == 'F') Type[i] = 3, lft++;
scanf("%s", s); Heap[++tot] = s[0];
scanf("%s", s); Heap[++tot] = s[0];
scanf("%s", s); Heap[++tot] = s[0];
scanf("%s", s); Heap[++tot] = s[0];
}
for (int i = 1; i <= m; i++) scanf("%s", s), Heap[++tot] = s[0]; m = tot; Maintain();
for (int i = 1; i <= n; i++) pig[i].id = i, pig[i].blood = 4, pig[i].DrawSession(), pig[i].DrawSession();
for (int cur = 1; !GameOver; cur = pig[cur].suc) pig[cur].Round();
printf("%s\n", pig[1].dead ? "FP" : "MP"); for (int i = 1; i <= n; i++) pig[i].Output();
return 0;
}

压行版

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#include <iostream>
#include <cstdio>
#define MAX_N 10
#define MAX_M 2000
using namespace std;
int n, m, Type[MAX_N+5], lft, CurPos, cnt; bool GameOver;
char Heap[MAX_M*2+5], c[MAX_M*5+5]; int bef[MAX_M*5+5], nxt[MAX_M*5+5];
char Draw() {CurPos = CurPos == m ? m : CurPos+1; return Heap[CurPos];}
void Attack(int, int); void Duel(int, int); void Invade(int); void Arrow(int);
struct Player {
int id, Sta, head, tail, now, tp, cntWX, cntA, cntP, cntS, blood, atk, pre, suc; bool dead, equip;
void Bonus() {
c[++cnt] = Draw(), bef[cnt] = tail; if (head == 0) head = tail = cnt; else nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++; if (c[cnt] == 'K') cntA++; if (c[cnt] == 'P') cntP++; if (c[cnt] == 'D') cntS++;
c[++cnt] = Draw(), bef[cnt] = tail; nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++; if (c[cnt] == 'K') cntA++; if (c[cnt] == 'P') cntP++; if (c[cnt] == 'D') cntS++;
c[++cnt] = Draw(), bef[cnt] = tail; nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++; if (c[cnt] == 'K') cntA++; if (c[cnt] == 'P') cntP++; if (c[cnt] == 'D') cntS++;
}
void Punish() {head = tail = now = cntWX = cntA = cntP = cntS = 0, equip = false;}
void DrawSession() {
c[++cnt] = Draw(), bef[cnt] = tail; if (head == 0) head = tail = cnt; else nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++; if (c[cnt] == 'K') cntA++; if (c[cnt] == 'P') cntP++; if (c[cnt] == 'D') cntS++;
c[++cnt] = Draw(), bef[cnt] = tail; nxt[tail] = cnt, tail = cnt;
if (c[cnt] == 'J') cntWX++; if (c[cnt] == 'K') cntA++; if (c[cnt] == 'P') cntP++; if (c[cnt] == 'D') cntS++;
}
void Use(int x) {
if (c[x] == 'J') cntWX--; if (c[x] == 'K') cntA--; if (c[x] == 'P') cntP--; if (c[x] == 'D') cntS--;
if (x == head && x == tail) head = tail = 0; else if (x == head) head = nxt[x], bef[nxt[x]] = 0;
else if (x == tail) tail = bef[x], nxt[bef[x]] = 0; else bef[nxt[x]] = bef[x], nxt[bef[x]] = nxt[x];
}
char GetNxt() {if (!now) return 0; tp = now, now = nxt[now]; return c[tp];}
int findWX() {now = head; char tmp; while (tmp = GetNxt()) if (tmp == 'J') return tp; return 0;}
int findA() {now = head; char tmp; while (tmp = GetNxt()) if (tmp == 'K') return tp; return 0;}
int findP() {now = head; char tmp; while (tmp = GetNxt()) if (tmp == 'P') return tp; return 0;}
int findS() {now = head; char tmp; while (tmp = GetNxt()) if (tmp == 'D') return tp; return 0;}
bool tryWX() {if (cntWX) {Use(findWX()); return true;} return false;}
bool tryA() {if (cntA) {Use(findA()); return true;} return false;}
bool tryS() {if (cntS) {Use(findS()); return true;} return false;}
bool tryP() {if (cntP) {Use(findP()); return true;} return false;}
void Round() {
DrawSession(); now = head;
bool atked = false; char tmp;
while ((tmp = GetNxt()) && !GameOver) {
if (tmp == 'D' || tmp == 'J') continue;
if (tmp == 'K' && atk == suc && (!atked || equip))
{Use(tp), Attack(id, atk), now = head, atked = true; if (GameOver) return;}
if (tmp == 'P' && blood != 4) Use(tp), blood++;
if (tmp == 'F') {
if (!atk) continue; Use(tp);
if (Type[id] == 3) Duel(id, 1);
else Duel(id, atk); now = head;
if (GameOver || dead) return;
}
if (tmp == 'N') {Use(tp), Invade(id), now = head; if (GameOver) return;}
if (tmp == 'W') {Use(tp), Arrow(id), now = head; if (GameOver) return;}
if (tmp == 'Z') Use(tp), equip = true, now = head;
}
}
void Output() {
if (dead) {printf("DEAD\n"); return;}
for (; head; head = nxt[head])
if (head == tail) cout << c[head];
else cout << c[head] << ' ';
printf("\n");
}
} pig[MAX_N+5];
void FindAtk(int x) {
int y = pig[x].suc;
if (Type[x] == 1) {
while (y != x) {if (pig[y].Sta == 1 || pig[y].Sta == 3) {pig[x].atk = y; return;} y = pig[y].suc;}
pig[x].atk = 0;
}
if (Type[x] == 2) {
while (y != x) {if (pig[y].Sta == 3) {pig[x].atk = y; return;} y = pig[y].suc;}
pig[x].atk = 0;
}
if (Type[x] == 3) {
while (y != x) {if (Type[y] == 1 || pig[y].Sta == 2) {pig[x].atk = y; return;} y = pig[y].suc;}
pig[x].atk = 0;
}
}
void Maintain() {int x = pig[1].suc; FindAtk(1); while (x != 1) FindAtk(x), x = pig[x].suc;}
void Kill(int x, int y) {
pig[y].dead = true;
if (Type[y] == 1) {GameOver = true; return;}
if (Type[y] == 3) {if (--lft == 0) {GameOver = true; return;} pig[x].Bonus();}
if (Type[x] == 1 && Type[y] == 2) pig[x].Punish();
int PRE = pig[y].pre, SUC = pig[y].suc; pig[PRE].suc = SUC, pig[SUC].pre = PRE; Maintain();
}
void Hurt(int x, int y) {if (--pig[y].blood == 0) if (pig[y].tryP()) pig[y].blood++; else Kill(x, y);}
void Attack(int x, int y) {
if (Type[x] != 1 && pig[x].Sta < 2) {
if (Type[y] == 3) pig[x].Sta = 2;
else pig[x].Sta = 3;
Maintain();
}
if (!pig[y].tryS()) Hurt(x, y);
}
bool WXcycle(int st, bool YType) {
int last = st, x = st; bool ORI = YType;
if (YType == (Type[x] == 3) && pig[x].tryWX()) {last = x, YType ^= 1; if (pig[x].Sta <= 2) pig[x].Sta = 3-YType, Maintain();}
x = pig[x].suc;
while (x != last) {
if (YType == (Type[x] == 3) && pig[x].tryWX())
{last = x, YType ^= 1; if (pig[x].Sta <= 2) pig[x].Sta = 3-YType, Maintain();}
x = pig[x].suc;
}
return ORI != YType;
}
void Duel(int x, int y) {
if (Type[x] != 1 && pig[x].Sta < 2) {if (Type[y] == 3) pig[x].Sta = 2; else pig[x].Sta = 3; Maintain();}
if (Type[y] == 1 || pig[y].Sta >= 2)
if (Type[y] == 1 || pig[y].Sta == 2) {if (WXcycle(x, 0)) return;}
else {if (WXcycle(x, 1)) return;}
if (Type[x] == 1 && Type[y] == 2) Hurt(x, y);
else for (;;) {if (!pig[y].tryA()) {Hurt(x, y); return;} if (!pig[x].tryA()) {Hurt(y, x); return;}}
}
void Invade(int x) {
int y = pig[x].suc;
while (y != x) {
if (Type[y] == 1 || pig[y].Sta >= 2)
if (Type[y] == 1 || pig[y].Sta == 2) {if (WXcycle(x, 0)) {y = pig[y].suc; continue;}}
else {if (WXcycle(x, 1)) {y = pig[y].suc; continue;}}
if (!pig[y].tryA()) {
Hurt(x, y); if (GameOver) return;
if (y == 1 && pig[x].Sta == 0) pig[x].Sta = 1, Maintain();
}
y = pig[y].suc;
}
}
void Arrow(int x) {
int y = pig[x].suc;
while (y != x) {
if (Type[y] == 1 || pig[y].Sta >= 2)
if (Type[y] == 1 || pig[y].Sta == 2) {if (WXcycle(x, 0)) {y = pig[y].suc; continue;}}
else {if (WXcycle(x, 1)) {y = pig[y].suc; continue;}}
if (!pig[y].tryS()) {
Hurt(x, y); if (GameOver) return;
if (y == 1 && pig[x].Sta == 0) pig[x].Sta = 1, Maintain();
}
y = pig[y].suc;
}
}
int main() {
scanf("%d%d", &n, &m); char s[2]; int tot = 0;
for (int i = n; i > 1; i--) pig[i].pre = i-1; pig[1].pre = n;
for (int i = 1; i < n; i++) pig[i].suc = i+1; pig[n].suc = 1;
for (int i = 1; i <= n; i++) {
scanf("%s", s);
if (s[0] == 'M') Type[i] = 1; if (s[0] == 'Z') Type[i] = 2; if (s[0] == 'F') Type[i] = 3, lft++;
scanf("%s", s); Heap[++tot] = s[0]; scanf("%s", s); Heap[++tot] = s[0];
scanf("%s", s); Heap[++tot] = s[0]; scanf("%s", s); Heap[++tot] = s[0];
}
for (int i = 1; i <= m; i++) scanf("%s", s), Heap[++tot] = s[0]; m = tot; Maintain();
for (int i = 1; i <= n; i++) pig[i].id = i, pig[i].blood = 4, pig[i].DrawSession(), pig[i].DrawSession();
for (int cur = 1; !GameOver; cur = pig[cur].suc) pig[cur].Round();
printf("%s\n", pig[1].dead ? "FP" : "MP"); for (int i = 1; i <= n; i++) pig[i].Output();
return 0;
}