三国游戏-简单易看懂 摘要:解题思路:将胜国每个事件发生时相对于其他两国的兵力增量记录并排序,只要他的事件增量大于0,那么这个事件就可以发生,最后从三个国家获胜情况中找到最大的事件数即可注意事项:参考代码:#include<bi…… 题解列表 2024年03月03日 1 点赞 0 评论 488 浏览 评分:9.3
3158: 蓝桥杯2023年第十四届省赛真题-三国游戏 摘要:```python n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())…… 题解列表 2023年12月22日 0 点赞 0 评论 679 浏览 评分:9.6
三国游戏 - 暴力搜索 摘要:```c++ #include using namespace std; typedef long long LL; const int N = 1e5+10; int x[N], y[…… 题解列表 2024年03月01日 1 点赞 1 评论 957 浏览 评分:9.8