forked from lleozhang/fight-the-landlord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
std.cpp
913 lines (836 loc) · 23.3 KB
/
std.cpp
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
// 斗地主·改(FightTheLandlord2)样例程序
// 无脑策略
// 最后修改:2021-05-23,修复了whoInHistory的更新。
// 2021-05-08,去除了有问题的isArray。
// 作者:zhouhy
// 游戏信息:http://www.botzone.org/games#FightTheLandlord2
#include <iostream>
#include <set>
#include <string>
#include <cassert>
#include <cstring> // 注意memset是cstring里的
#include <algorithm>
#include "jsoncpp/json.h" // 在平台上,C++编译时默认包含此库
using std::set;
using std::sort;
using std::string;
using std::unique;
using std::vector;
constexpr int PLAYER_COUNT = 3;
enum class Stage
{
BIDDING, // 叫分阶段
PLAYING // 打牌阶段
};
enum class CardComboType
{
PASS, // 过
SINGLE, // 单张
PAIR, // 对子
STRAIGHT, // 顺子
STRAIGHT2, // 双顺
TRIPLET, // 三条
TRIPLET1, // 三带一
TRIPLET2, // 三带二
BOMB, // 炸弹
QUADRUPLE2, // 四带二(只)
QUADRUPLE4, // 四带二(对)
PLANE, // 飞机
PLANE1, // 飞机带小翼
PLANE2, // 飞机带大翼
SSHUTTLE, // 航天飞机
SSHUTTLE2, // 航天飞机带小翼
SSHUTTLE4, // 航天飞机带大翼
ROCKET, // 火箭
INVALID // 非法牌型
};
int cardComboScores[] = {
0, // 过
1, // 单张
2, // 对子
6, // 顺子
6, // 双顺
4, // 三条
4, // 三带一
4, // 三带二
10, // 炸弹
8, // 四带二(只)
8, // 四带二(对)
8, // 飞机
8, // 飞机带小翼
8, // 飞机带大翼
10, // 航天飞机(需要特判:二连为10分,多连为20分)
10, // 航天飞机带小翼
10, // 航天飞机带大翼
16, // 火箭
0 // 非法牌型
};
#ifndef _BOTZONE_ONLINE
string cardComboStrings[] = {
"PASS",
"SINGLE",
"PAIR",
"STRAIGHT",
"STRAIGHT2",
"TRIPLET",
"TRIPLET1",
"TRIPLET2",
"BOMB",
"QUADRUPLE2",
"QUADRUPLE4",
"PLANE",
"PLANE1",
"PLANE2",
"SSHUTTLE",
"SSHUTTLE2",
"SSHUTTLE4",
"ROCKET",
"INVALID"};
#endif
// 用0~53这54个整数表示唯一的一张牌
using Card = short;
constexpr Card card_joker = 52;
constexpr Card card_JOKER = 53;
// 除了用0~53这54个整数表示唯一的牌,
// 这里还用另一种序号表示牌的大小(不管花色),以便比较,称作等级(Level)
// 对应关系如下:
// 3 4 5 6 7 8 9 10 J Q K A 2 小王 大王
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
using Level = short;
constexpr Level MAX_LEVEL = 15;
constexpr Level MAX_STRAIGHT_LEVEL = 11;
constexpr Level level_joker = 13;
constexpr Level level_JOKER = 14;
/**
* 将Card变成Level
*/
constexpr Level card2level(Card card)
{
return card / 4 + card / 53;
}
// 牌的组合,用于计算牌型
struct CardCombo
{
// 表示同等级的牌有多少张
// 会按个数从大到小、等级从大到小排序
struct CardPack
{
Level level;
short count;
bool operator<(const CardPack &b) const
{
if (count == b.count)
return level > b.level;
return count > b.count;
}
};
vector<Card> cards; // 原始的牌,未排序
vector<CardPack> packs; // 按数目和大小排序的牌种
CardComboType comboType; // 算出的牌型
Level comboLevel = 0; // 算出的大小序
/**
* 检查个数最多的CardPack递减了几个
*/
int findMaxSeq() const
{
for (unsigned c = 1; c < packs.size(); c++)
if (packs[c].count != packs[0].count ||
packs[c].level != packs[c - 1].level - 1)
return c;
return packs.size();
}
/**
* 这个牌型最后算总分的时候的权重
*/
int getWeight() const
{
if (comboType == CardComboType::SSHUTTLE ||
comboType == CardComboType::SSHUTTLE2 ||
comboType == CardComboType::SSHUTTLE4)
return cardComboScores[(int)comboType] + (findMaxSeq() > 2) * 10;
return cardComboScores[(int)comboType];
}
// 创建一个空牌组
CardCombo() : comboType(CardComboType::PASS) {}
/**
* 通过Card(即short)类型的迭代器创建一个牌型
* 并计算出牌型和大小序等
* 假设输入没有重复数字(即重复的Card)
*/
template <typename CARD_ITERATOR>
CardCombo(CARD_ITERATOR begin, CARD_ITERATOR end)
{
// 特判:空
if (begin == end)
{
comboType = CardComboType::PASS;
return;
}
// 每种牌有多少个
short counts[MAX_LEVEL + 1] = {};
// 同种牌的张数(有多少个单张、对子、三条、四条)
short countOfCount[5] = {};
cards = vector<Card>(begin, end);
for (Card c : cards)
counts[card2level(c)]++;
for (Level l = 0; l <= MAX_LEVEL; l++)
if (counts[l])
{
packs.push_back(CardPack{l, counts[l]});
countOfCount[counts[l]]++;
}
sort(packs.begin(), packs.end());
// 用最多的那种牌总是可以比较大小的
comboLevel = packs[0].level;
// 计算牌型
// 按照 同种牌的张数 有几种 进行分类
vector<int> kindOfCountOfCount;
for (int i = 0; i <= 4; i++)
if (countOfCount[i])
kindOfCountOfCount.push_back(i);
sort(kindOfCountOfCount.begin(), kindOfCountOfCount.end());
int curr, lesser;
switch (kindOfCountOfCount.size())
{
case 1: // 只有一类牌
curr = countOfCount[kindOfCountOfCount[0]];
switch (kindOfCountOfCount[0])
{
case 1:
// 只有若干单张
if (curr == 1)
{
comboType = CardComboType::SINGLE;
return;
}
if (curr == 2 && packs[1].level == level_joker)
{
comboType = CardComboType::ROCKET;
return;
}
if (curr >= 5 && findMaxSeq() == curr &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::STRAIGHT;
return;
}
break;
case 2:
// 只有若干对子
if (curr == 1)
{
comboType = CardComboType::PAIR;
return;
}
if (curr >= 3 && findMaxSeq() == curr &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::STRAIGHT2;
return;
}
break;
case 3:
// 只有若干三条
if (curr == 1)
{
comboType = CardComboType::TRIPLET;
return;
}
if (findMaxSeq() == curr &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::PLANE;
return;
}
break;
case 4:
// 只有若干四条
if (curr == 1)
{
comboType = CardComboType::BOMB;
return;
}
if (findMaxSeq() == curr &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::SSHUTTLE;
return;
}
}
break;
case 2: // 有两类牌
curr = countOfCount[kindOfCountOfCount[1]];
lesser = countOfCount[kindOfCountOfCount[0]];
if (kindOfCountOfCount[1] == 3)
{
// 三条带?
if (kindOfCountOfCount[0] == 1)
{
// 三带一
if (curr == 1 && lesser == 1)
{
comboType = CardComboType::TRIPLET1;
return;
}
if (findMaxSeq() == curr && lesser == curr &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::PLANE1;
return;
}
}
if (kindOfCountOfCount[0] == 2)
{
// 三带二
if (curr == 1 && lesser == 1)
{
comboType = CardComboType::TRIPLET2;
return;
}
if (findMaxSeq() == curr && lesser == curr &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::PLANE2;
return;
}
}
}
if (kindOfCountOfCount[1] == 4)
{
// 四条带?
if (kindOfCountOfCount[0] == 1)
{
// 四条带两只 * n
if (curr == 1 && lesser == 2)
{
comboType = CardComboType::QUADRUPLE2;
return;
}
if (findMaxSeq() == curr && lesser == curr * 2 &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::SSHUTTLE2;
return;
}
}
if (kindOfCountOfCount[0] == 2)
{
// 四条带两对 * n
if (curr == 1 && lesser == 2)
{
comboType = CardComboType::QUADRUPLE4;
return;
}
if (findMaxSeq() == curr && lesser == curr * 2 &&
packs.begin()->level <= MAX_STRAIGHT_LEVEL)
{
comboType = CardComboType::SSHUTTLE4;
return;
}
}
}
}
comboType = CardComboType::INVALID;
}
/**
* 判断指定牌组能否大过当前牌组(这个函数不考虑过牌的情况!)
*/
bool canBeBeatenBy(const CardCombo &b) const
{
if (comboType == CardComboType::INVALID || b.comboType == CardComboType::INVALID)
return false;
if (b.comboType == CardComboType::ROCKET)
return true;
if (b.comboType == CardComboType::BOMB)
switch (comboType)
{
case CardComboType::ROCKET:
return false;
case CardComboType::BOMB:
return b.comboLevel > comboLevel;
default:
return true;
}
return b.comboType == comboType && b.cards.size() == cards.size() && b.comboLevel > comboLevel;
}
/**
* 从指定手牌中寻找第一个能大过当前牌组的牌组
* 如果随便出的话只出第一张
* 如果不存在则返回一个PASS的牌组
*/
template <typename CARD_ITERATOR>
CardCombo findFirstValid(CARD_ITERATOR begin, CARD_ITERATOR end) const
{
if (comboType == CardComboType::PASS) // 如果不需要大过谁,只需要随便出
{
CARD_ITERATOR second = begin;
second++;
return CardCombo(begin, second); // 那么就出第一张牌……
}
// 然后先看一下是不是火箭,是的话就过
if (comboType == CardComboType::ROCKET)
return CardCombo();
// 现在打算从手牌中凑出同牌型的牌
auto deck = vector<Card>(begin, end); // 手牌
short counts[MAX_LEVEL + 1] = {};
unsigned short kindCount = 0;
// 先数一下手牌里每种牌有多少个
for (Card c : deck)
counts[card2level(c)]++;
// 手牌如果不够用,直接不用凑了,看看能不能炸吧
if (deck.size() < cards.size())
goto failure;
// 再数一下手牌里有多少种牌
for (short c : counts)
if (c)
kindCount++;
// 否则不断增大当前牌组的主牌,看看能不能找到匹配的牌组
{
// 开始增大主牌
int mainPackCount = findMaxSeq();
bool isSequential =
comboType == CardComboType::STRAIGHT ||
comboType == CardComboType::STRAIGHT2 ||
comboType == CardComboType::PLANE ||
comboType == CardComboType::PLANE1 ||
comboType == CardComboType::PLANE2 ||
comboType == CardComboType::SSHUTTLE ||
comboType == CardComboType::SSHUTTLE2 ||
comboType == CardComboType::SSHUTTLE4;
for (Level i = 1;; i++) // 增大多少
{
for (int j = 0; j < mainPackCount; j++)
{
int level = packs[j].level + i;
// 各种连续牌型的主牌不能到2,非连续牌型的主牌不能到小王,单张的主牌不能超过大王
if ((comboType == CardComboType::SINGLE && level > MAX_LEVEL) ||
(isSequential && level > MAX_STRAIGHT_LEVEL) ||
(comboType != CardComboType::SINGLE && !isSequential && level >= level_joker))
goto failure;
// 如果手牌中这种牌不够,就不用继续增了
if (counts[level] < packs[j].count)
goto next;
}
{
// 找到了合适的主牌,那么从牌呢?
// 如果手牌的种类数不够,那从牌的种类数就不够,也不行
if (kindCount < packs.size())
continue;
// 好终于可以了
// 计算每种牌的要求数目吧
short requiredCounts[MAX_LEVEL + 1] = {};
for (int j = 0; j < mainPackCount; j++)
requiredCounts[packs[j].level + i] = packs[j].count;
for (unsigned j = mainPackCount; j < packs.size(); j++)
{
Level k;
for (k = 0; k <= MAX_LEVEL; k++)
{
if (requiredCounts[k] || counts[k] < packs[j].count)
continue;
requiredCounts[k] = packs[j].count;
break;
}
if (k == MAX_LEVEL + 1) // 如果是都不符合要求……就不行了
goto next;
}
// 开始产生解
vector<Card> solve;
for (Card c : deck)
{
Level level = card2level(c);
if (requiredCounts[level])
{
solve.push_back(c);
requiredCounts[level]--;
}
}
return CardCombo(solve.begin(), solve.end());
}
next:; // 再增大
}
}
failure:
// 实在找不到啊
// 最后看一下能不能炸吧
for (Level i = 0; i < level_joker; i++)
if (counts[i] == 4 && (comboType != CardComboType::BOMB || i > packs[0].level)) // 如果对方是炸弹,能炸的过才行
{
// 还真可以啊……
Card bomb[] = {Card(i * 4), Card(i * 4 + 1), Card(i * 4 + 2), Card(i * 4 + 3)};
return CardCombo(bomb, bomb + 4);
}
// 有没有火箭?
if (counts[level_joker] + counts[level_JOKER] == 2)
{
Card rocket[] = {card_joker, card_JOKER};
return CardCombo(rocket, rocket + 2);
}
// ……
return CardCombo();
}
void debugPrint()
{
#ifndef _BOTZONE_ONLINE
std::cout << "【" << cardComboStrings[(int)comboType] << "共" << cards.size() << "张,大小序" << comboLevel << "】";
#endif
}
};
/* 状态 */
// 我的牌有哪些
set<Card> myCards;
// 地主明示的牌有哪些
set<Card> landlordPublicCards;
// 大家从最开始到现在都出过什么
vector<vector<Card>> whatTheyPlayed[PLAYER_COUNT];
// 当前要出的牌需要大过谁
CardCombo lastValidCombo;
// 大家还剩多少牌
short cardRemaining[PLAYER_COUNT] = {17, 17, 17};
// 我是几号玩家(0-地主,1-农民甲,2-农民乙)
int myPosition;
// 地主位置
int landlordPosition = -1;
// 地主叫分
int landlordBid = -1;
// 阶段
Stage stage = Stage::BIDDING;
// 自己的第一回合收到的叫分决策
vector<int> bidInput;
namespace BotzoneIO
{
using namespace std;
void read()
{
// 读入输入(平台上的输入是单行)
string line;
getline(cin, line);
Json::Value input;
Json::Reader reader;
reader.parse(line, input);
// 首先处理第一回合,得知自己是谁、有哪些牌
{
auto firstRequest = input["requests"][0u]; // 下标需要是 unsigned,可以通过在数字后面加u来做到
auto own = firstRequest["own"];
for (unsigned i = 0; i < own.size(); i++)
myCards.insert(own[i].asInt());
if (!firstRequest["bid"].isNull())
{
// 如果还可以叫分,则记录叫分
auto bidHistory = firstRequest["bid"];
myPosition = bidHistory.size();
for (unsigned i = 0; i < bidHistory.size(); i++)
bidInput.push_back(bidHistory[i].asInt());
}
}
// history里第一项(上上家)和第二项(上家)分别是谁的决策
int whoInHistory[] = {(myPosition - 2 + PLAYER_COUNT) % PLAYER_COUNT, (myPosition - 1 + PLAYER_COUNT) % PLAYER_COUNT};
int turn = input["requests"].size();
for (int i = 0; i < turn; i++)
{
auto request = input["requests"][i];
auto llpublic = request["publiccard"];
if (!llpublic.isNull())
{
// 第一次得知公共牌、地主叫分和地主是谁
landlordPosition = request["landlord"].asInt();
landlordBid = request["finalbid"].asInt();
myPosition = request["pos"].asInt();
whoInHistory[0] = (myPosition - 2 + PLAYER_COUNT) % PLAYER_COUNT;
whoInHistory[1] = (myPosition - 1 + PLAYER_COUNT) % PLAYER_COUNT;
cardRemaining[landlordPosition] += llpublic.size();
for (unsigned i = 0; i < llpublic.size(); i++)
{
landlordPublicCards.insert(llpublic[i].asInt());
if (landlordPosition == myPosition)
myCards.insert(llpublic[i].asInt());
}
}
auto history = request["history"]; // 每个历史中有上家和上上家出的牌
if (history.isNull())
continue;
stage = Stage::PLAYING;
// 逐次恢复局面到当前
int howManyPass = 0;
for (int p = 0; p < 2; p++)
{
int player = whoInHistory[p]; // 是谁出的牌
auto playerAction = history[p]; // 出的哪些牌
vector<Card> playedCards;
for (unsigned _ = 0; _ < playerAction.size(); _++) // 循环枚举这个人出的所有牌
{
int card = playerAction[_].asInt(); // 这里是出的一张牌
playedCards.push_back(card);
}
whatTheyPlayed[player].push_back(playedCards); // 记录这段历史
cardRemaining[player] -= playerAction.size();
if (playerAction.size() == 0)
howManyPass++;
else
lastValidCombo = CardCombo(playedCards.begin(), playedCards.end());
}
if (howManyPass == 2)
lastValidCombo = CardCombo();
if (i < turn - 1)
{
// 还要恢复自己曾经出过的牌
auto playerAction = input["responses"][i]; // 出的哪些牌
vector<Card> playedCards;
for (unsigned _ = 0; _ < playerAction.size(); _++) // 循环枚举自己出的所有牌
{
int card = playerAction[_].asInt(); // 这里是自己出的一张牌
myCards.erase(card); // 从自己手牌中删掉
playedCards.push_back(card);
}
whatTheyPlayed[myPosition].push_back(playedCards); // 记录这段历史
cardRemaining[myPosition] -= playerAction.size();
}
}
}
/**
* 输出叫分(0, 1, 2, 3 四种之一)
*/
void bid(int value)
{
Json::Value result;
result["response"] = value;
Json::FastWriter writer;
cout << writer.write(result) << endl;
}
/**
* 输出打牌决策,begin是迭代器起点,end是迭代器终点
* CARD_ITERATOR是Card(即short)类型的迭代器
*/
template <typename CARD_ITERATOR>
void play(CARD_ITERATOR begin, CARD_ITERATOR end)
{
Json::Value result, response(Json::arrayValue);
for (; begin != end; begin++)
response.append(*begin);
result["response"] = response;
Json::FastWriter writer;
cout << writer.write(result) << endl;
}
}
using namespace std;
#include <ctime>
clock_t s,e;
int est_dfs(int *cyt,int typ,int las)//将牌拆解成不同的牌组进行估分,为避免重复按牌型顺序进行拆解,一个牌组的总评分为各牌型的评分之和减去牌型数量
{
e=clock();
if(double(e-s)/CLOCKS_PER_SEC>0.85)return -0x3f3f3f3f;
bool fl=0;
int cnt=0;
for(int i=0;i<=14;i++)if(cyt[i]){fl=1;cnt+=cyt[i];}
if(!fl)return 0;
if(typ>7||las>14)return -0x3f3f3f3f;
int tempret=-0x3f3f3f3f;
tempret=max(tempret,est_dfs(cyt,typ+1,0));//不使用本牌型
if(typ==1)//王炸
{
bool fl=0;
if(cyt[14]&&cyt[13])
{
cyt[14]--,cyt[13]--;
int temp=est_dfs(cyt,typ+1,0)-1;
cyt[14]++,cyt[13]++;
tempret=max(tempret,temp+30);
fl=1;
}
if(!fl)tempret=max(tempret,est_dfs(cyt,typ+1,0));
}else if(typ==2)//四带
{
bool fl=0;
for(int i=las;i<=12;i++)
{
if(cyt[i]!=4)continue;
cyt[i]=0;
fl=1;
tempret=max(tempret,15+i+est_dfs(cyt,typ,i+1)-1);
tempret=max(tempret,est_dfs(cyt,typ,i+1));
for(int j=0;j<=14;j++)//四带一/二
{
for(int k=j+1;k<=14;k++)
{
if(cyt[j]&&cyt[k])
{
cyt[j]--,cyt[k]--;
tempret=max(tempret,7+i+est_dfs(cyt,typ,i+1)-1);
if(cyt[j]&&cyt[k])
{
cyt[j]--,cyt[k]--;
tempret=max(tempret,7+i+est_dfs(cyt,typ,i+1)-1);
cyt[j]++,cyt[k]++;
}
cyt[j]++,cyt[k]++;
}
}
}
cyt[i]=4;
break;
}
if(!fl)tempret=max(tempret,est_dfs(cyt,typ+1,0));
}else if(typ==3)//三带
{
bool fl=0;
for(int i=las;i<=12;i++)
{
if(cyt[i]<3)continue;
fl=1;
tempret=max(tempret,est_dfs(cyt,typ,i+1));
cyt[i]-=3;
for(int j=0;j<=14;j++)
{
if(cyt[j])
{
cyt[j]--;
tempret=max(tempret,i+3+est_dfs(cyt,typ,i+1)-1);
if(cyt[j])
{
cyt[j]--;
tempret=max(tempret,i+3+est_dfs(cyt,typ,i+1)-1);
cyt[j]++;
}
cyt[j]++;
}
}
cyt[i]+=3;
break;
}
for(int i=las;i<12;i++)
{
if(cyt[i]>=3&&cyt[i+1]>=3)
{
cyt[i]-=3,cyt[i+1]-=3;
for(int j=0;j<=14;j++)
{
for(int k=j+1;k<=14;k++)
{
if(cyt[j]&&cyt[k]&&i!=j&&i!=k)
{
cyt[j]--,cyt[k]--;
tempret=max(tempret,i+9+est_dfs(cyt,typ,i+2)-1);
if(cyt[j]&&cyt[k])
{
cyt[j]--,cyt[k]--;
tempret=max(tempret,i+9+est_dfs(cyt,typ,i+2)-1);
cyt[j]++,cyt[k]++;
}
cyt[j]++,cyt[k]++;
}
}
}
cyt[i]+=3,cyt[i+1]+=3;
break;
}
}
if(!fl)tempret=max(tempret,est_dfs(cyt,typ+1,0));
}else if(typ==4)//单顺
{
tempret=max(tempret,est_dfs(cyt,typ,las+1));
bool fl=0;
for(int i=5;i<=13;i++)
{
bool flag=0;
for(int j=0;j<i;j++)
{
if(!cyt[las+j]){flag=1;break;}
}
if(flag)break;
else
{
fl=1;
for(int j=0;j<i;j++)cyt[las+j]--;
tempret=max(tempret,i+las+est_dfs(cyt,typ,las+1)-1);
for(int j=0;j<i;j++)cyt[las+j]++;
}
}
if(!fl)tempret=max(tempret,est_dfs(cyt,typ+1,0));
}else if(typ==5)//双顺
{
tempret=max(tempret,est_dfs(cyt,typ,las+1));
bool fl=0;
for(int i=3;i<=13;i++)
{
bool flag=0;
for(int j=0;j<i;j++)
{
if(cyt[las+j]<2){flag=1;break;}
}
if(flag)break;
else
{
fl=1;
for(int j=0;j<i;j++)cyt[las+j]-=2;
tempret=max(tempret,i*3/2+las+est_dfs(cyt,typ,las+1)-1);
for(int j=0;j<i;j++)cyt[las+j]-=2;
}
}
if(!fl)tempret=max(tempret,est_dfs(cyt,typ+1,0));
}else if(typ==6)//对
{
bool fl=0;
for(int i=las;i<=12;i++)
{
if(cyt[i]<2)continue;
tempret=max(tempret,est_dfs(cyt,typ,i+1));
cyt[i]-=2;
tempret=max(tempret,max((i-10),0)+est_dfs(cyt,typ,i+1)-1);
cyt[i]+=2;
fl=1;
break;
}
if(!fl)tempret=max(tempret,est_dfs(cyt,typ+1,0));
}else if(typ==7)//单
{
int temps=0;
for(int i=0;i<=14;i++)temps+=max(0,(i-11)*cyt[i]);
temps-=cnt;
tempret=max(tempret,temps);
}
return tempret;
}
int main()
{
srand(time(nullptr));
BotzoneIO::read();
if (stage == Stage::BIDDING)
{
// 做出决策(你只需修改以下部分)
auto maxBidIt = std::max_element(bidInput.begin(), bidInput.end());
int maxBid = maxBidIt == bidInput.end() ? -1 : *maxBidIt;
int *cyt=new int[25];
set <Card>::iterator it;
for(it=myCards.begin();it!=myCards.end();it++)
{
cyt[card2level(*it)]++;
}
s=clock();
int sc=est_dfs(cyt,1,0);
int bidValue=0;
if(sc>80)bidValue=3;
else if(sc>60)bidValue=2;
else if(sc>40)bidValue=1;
else bidValue=0;
if(bidValue<maxBid)bidValue=0;
// 决策结束,输出结果(你只需修改以上部分)
BotzoneIO::bid(bidValue);
}
else if (stage == Stage::PLAYING)
{
// 做出决策(你只需修改以下部分)
// findFirstValid 函数可以用作修改的起点
CardCombo myAction = lastValidCombo.findFirstValid(myCards.begin(), myCards.end());
// 是合法牌
assert(myAction.comboType != CardComboType::INVALID);
assert(
// 在上家没过牌的时候过牌
(lastValidCombo.comboType != CardComboType::PASS && myAction.comboType == CardComboType::PASS) ||
// 在上家没过牌的时候出打得过的牌
(lastValidCombo.comboType != CardComboType::PASS && lastValidCombo.canBeBeatenBy(myAction)) ||
// 在上家过牌的时候出合法牌
(lastValidCombo.comboType == CardComboType::PASS && myAction.comboType != CardComboType::INVALID));
// 决策结束,输出结果(你只需修改以上部分)
BotzoneIO::play(myAction.cards.begin(), myAction.cards.end());
}
}