Codeforces Round 927 (Div. 3) D. Card Game 题解 贪心

Card Game

题目描述

Two players are playing an online card game. The game is played using a 32-card deck. Each card has a suit and a rank. There are four suits: clubs, diamonds, hearts, and spades. We will encode them with characters ‘C’, ‘D’, ‘H’, and ‘S’, respectively. And there are 8 ranks, in increasing order: ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ‘9’.

Each card is denoted by two letters: its rank and its suit. For example, the 8 of Hearts is denoted as 8H.

At the beginning of the game, one suit is chosen as the trump suit.

In each round, players make moves like this: the first player places one of his cards on the table, and the second player must beat this card with one of their cards. After that, both cards are moved to the discard pile.

A card can beat another card if both cards have the same suit and the first card has a higher rank than the second. For example, 8S can beat 4S. Additionally, a trump card can beat any non-trump card, regardless of the rank of the cards, for example, if the trump suit is clubs (‘C’), then 3C can beat 9D. Note that trump cards can be beaten only by the trump cards of higher rank.

There were n n n rounds played in the game, so the discard pile now contains 2 n 2n 2n cards. You want to reconstruct the rounds played in the game, but the cards in the discard pile are shuffled. Find any possible sequence of n n n rounds that might have been played in the game.

输入描述

The first line contains integer t t t ( 1 ≤ t ≤ 100 1 \le t \le 100 1t100) — the number of test cases. Then t t t test cases follow.

The first line of a test case contains the integer number n n n ( 1 ≤ n ≤ 16 1\le n\le 16 1n16).

The second line of a test case contains one character, the trump suit. It is one of “CDHS”.

The third line of a test case contains the description of 2 n 2n 2n cards. Each card is described by a two-character string, the first character is the rank of the card, which is one of “23456789”, and the second one is the suit of the card, which is one of “CDHS”. All cards are different.

输出描述

For each test case print the answer to it:

  • Print n n n lines. In each line, print the description of two cards, in the same format as in the input: the first card that was played by the first player, and then the card that was used by the second player to beat it.
  • If there is no solution, print a single line “IMPOSSIBLE”.

If there are multiple solutions, print any of them.

样例输入 #1

8
3
S
3C 9S 4C 6D 3S 7S
2
C
3S 5D 9S 6H
1
H
6C 5D
1
S
7S 3S
1
H
9S 9H
1
S
9S 9H
1
C
9D 8H
2
C
9C 9S 6H 8C

样例输出 #1

3C 4C
6D 9S
3S 7S
IMPOSSIBLE
IMPOSSIBLE
3S 7S
9S 9H
9H 9S
IMPOSSIBLE
6H 9C
9S 8C

原题

CF——传送门
洛谷——传送门

代码

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;int main()
{ios::sync_with_stdio(0);cin.tie(0);int t;cin >> t;while (t--){int n;char c;cin >> n >> c;vector<pair<string, string>> ans;vector<string> v(2 * n);for (int i = 0; i < 2 * n; i++)cin >> v[i];auto cmp = [&](string a, string b) -> bool{// 同为王牌花色时,点数小在前if (a[1] == c && b[1] == c) // 事实上该判断可与第四条判断合并,但这样更加清晰return a[0] < b[0];// 判断2和判断3是使王牌花色在排序后位于其他花色的后面if (a[1] == c)return 0;if (b[1] == c)return 1;// 相同花色,点数小在前if (a[1] == b[1])return a[0] < b[0];// 不同花色,按字典序(只要给定任意一种规则排序即可,这边为了方便采用字典序)if (a[1] != b[1])return a[1] < b[1];return 1;};sort(v.begin(), v.end(), cmp); // 按贪心顺序排序,即先消去王牌花色外的可消去牌对,再用王牌花色消去剩下的牌int small = 0;                 // 被击败的牌即小牌的索引int big = 1;                   // 击败小牌的大牌的索引vector<bool> del(2 * n, 0);// 操作一:先消去王牌花色外的可消去牌对while (big <= 2 * n - 1){if (v[big][1] == c) // 遇到王牌花色则退出循环break;// 可消去if (v[small][1] == v[big][1]){del[small] = 1;del[big] = 1;ans.push_back({v[small], v[big]});small += 2;big += 2;}// 不可消去else{small++;big++;}}vector<string> v2; // 保存完成操作一后仍剩下的牌,供操作二消去for (int i = 0; i < 2 * n; i++){if (del[i] == 0)v2.push_back(v[i]);}// 操作二:再用王牌花色消去剩下的牌for (int i = 0; i < v2.size() / 2; i++){int j = v2.size() - 1 - i;if (v2[j][1] == c)ans.push_back({v2[i], v2[j]});elsebreak;}if (ans.size() == n){for (int i = 0; i < ans.size(); i++){cout << ans[i].first << ' ' << ans[i].second << '\n';}}elsecout << "IMPOSSIBLE\n";}return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/16208.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

让大模型变得更聪明三个方向

让大模型变得更聪明三个方向 随着人工智能技术的飞速发展&#xff0c;大模型在多个领域展现出了前所未有的能力&#xff0c;但它们仍然面临着理解力、泛化能力和适应性等方面的挑战。那么&#xff0c;如何让大模型变得更聪明呢&#xff1f; 方向一&#xff1a;算法创新 1.1算…

粤嵌—2024/5/20—三角形最小路径和(✔)

代码实现&#xff1a; int minimumTotal(int **triangle, int triangleSize, int *triangleColSize) {if (triangleSize 1) {return triangle[0][0];}for (int i 1; i < triangleSize; i) {for (int j 0; j < triangleColSize[i]; j) {int x i - 1;int y1 j - 1, y2…

【数据结构】快速排序详解!

文章目录 1. 快速排序的非递归版本2. 快速排序2.1 hoare 版本一2.2 挖坑法 &#x1f427;版本二2.3 前后指针 版本三2.4 调用以上的三个版本的快排 3. 快速排序的优化 1. 快速排序的非递归版本 &#x1f192;&#x1f427;关键思路&#xff1a; &#x1f34e;① 参数中的begin…

MySQL基础_6.函数

文章目录 一.不同DBMS函数的差异二.单行函数三.聚合函数3.1 常用聚合函数3.2 GROUP BY 四.SELECT的执行顺序4.1 写SELECT的顺序4.2 SELECT 的执行顺序 一.不同DBMS函数的差异 我们在使用 SQL 语言的时候&#xff0c;不是直接和这门语言打交道&#xff0c;而是通过它使用不同的…

5-26 Cpp学习笔记

1、如果子类实现了基类的函数&#xff0c;返回值、参数都相同&#xff0c;就覆盖了基类的函数。 2、使用作用域解析运算符来调用基类的函数。myDinner.Swim(); —— 调用子类的。myDinner.Fish::Swim(); —— 调用基类的(基类是Fish) 3、在子类中使用关键字using解除对Fish::…

力扣刷题---LCS 02. 完成一半题目【简单】

题目描述 有 N 位扣友参加了微软与力扣举办了「以扣会友」线下活动。主办方提供了 2*N 道题目&#xff0c;整型数组 questions 中每个数字对应了每道题目所涉及的知识点类型。 若每位扣友选择不同的一题&#xff0c;请返回被选的 N 道题目至少包含多少种知识点类型。 示例 1&…

YOLOv10 论文学习

论文链接&#xff1a;https://arxiv.org/pdf/2405.14458 代码链接&#xff1a;https://github.com/THU-MIG/yolov10 解决了什么问题&#xff1f; 实时目标检测是计算机视觉领域的研究焦点&#xff0c;目的是以较低的延迟准确地预测图像中各物体的类别和坐标。它广泛应用于自动…

【JMU】21编译原理期末笔记

本拖延症晚期患者不知不觉已经有半年没写博客了&#xff0c;天天不知道在忙什么。 乘着期末周前赶紧先把编译原理上传了&#xff0c;我记得我这科是86分&#xff0c;有点小遗憾没上90&#xff0c;但是总体不错。 链接&#xff1a;https://pan.baidu.com/s/1gO8pT7paHv1lkM_ZpkI…

JVM学习-Class文件结构①

字节码文件的跨平台性 Java语言&#xff1a;跨平台的语言(Write Once,Run Anywhere) 当Java源代码编译成字节码后&#xff0c;如果想在不同平台上运行&#xff0c;则无须再次编译这上优势不再那么吸引人&#xff0c;Python,PHP,Ruby,Lisp等有强大的解释器跨平台似乎已经成为一…

《最新出炉》系列入门篇-Python+Playwright自动化测试-41-录制视频

宏哥微信粉丝群&#xff1a;https://bbs.csdn.net/topics/618423372 有兴趣的可以扫码加入 1.简介 上一篇讲解和分享了录制自动生成脚本&#xff0c;索性连带录制视频也一股脑的在这里就讲解和分享了。今天我们将学习如何使用Playwright和Python来录制浏览器操作的视频&#…

删除有序数组中的重复项-力扣

本题的解题思路同样是使用快慢指针对数组进行操作&#xff0c;代码如下&#xff1a; class Solution { public:int removeDuplicates(vector<int>& nums) {int fastindex 1;int slowindex 0;for(fastindex; fastindex < nums.size(); fastindex){if(nums[fasti…

Overleaf中出现文字越界、越下届、没有正确分页、换页的原因和解决方法

在使用overleaf中&#xff0c;我偶尔会遇到如标题所说的情况&#xff0c;也如图所示&#xff1a; 后来发现&#xff0c;是因为这一页前面是一个表格&#xff0c;所以怀疑是表格的格式导致的。所以让chatgpt帮我更换了表格的格式&#xff0c;成功解决问题。 对于问题可能的成因…

Exel 求某行数最大值

方法1 MAX&#xff08; 选中比较数回车

伪css的处理方式

import re # 正则表达式模式&#xff0c;匹配以 cl 开头&#xff0c;后跟任意数字&#xff0c;然后是 a::before pattern_cl8 r(cl8)\sa::before # 在源码中查找匹配项 matches_cl8 re.findall(pattern_cl8, page_source, re.IGNORECASE) # 如果找到 cl8 a::before&#…

从感知机到神经网络

感知机 一、感知机是什么二、用感知机搭建简单逻辑电路2.1 与门2.2 与非门2.3 或门 三、感知机的局限性3.1 异或门3.2 线性和非线性 四、多层感知机4.1 已有门电路的组合4.2 Python异或门的实现 五、感知机模型5.1 感知机模型5.2 感知机损失函数5.3 感知机学习算法 六、感知机原…

富文本编辑器与 Markdown 编辑器的区别与相同点

富文本编辑器与 Markdown 编辑器的区别与相同点 ​ 富文本编辑器和 Markdown 编辑器都是用于创建文本内容的工具&#xff0c;但它们在工作方式、功能和适用性方面存在一些关键差异。 相同点 文本编辑: 两种编辑器都允许用户创建和编辑文本内容&#xff0c;包括基本的文本格式…

对澳洲后端软件工程工作一些术语分析

以下摘自Seek(澳洲求职网站)上一份软件工程师招聘的工作描述job description, 找工作很重要的一件事就是了解求职的公司要求requirement。本章是对这份工作描述的分析&#xff0c;和term的笔记 Job Description What you can bring to the team: • Minimum 5 years of Back…

使用Pyecharts构建Map对象无法显示颜色--解决

我们在做数据可视化的过程中&#xff0c;可能需要使用到地图作为数据可视化的工具&#xff1b; 包括世界地图、国家地图、省市区地图等&#xff1b; 如果在你设置好颜色数据匹配后&#xff0c;可视化地图未显示对应数据的颜色&#xff0c;那么请检查是否出现以下情况&#xf…

安全分析[1]之网络协议脆弱性分析

文章目录 威胁网络安全的主要因素计算机网络概述网络体系结构 网络体系结构脆弱性分组交换认证与可追踪性尽力而为匿名与隐私对全球网络基础实施的依赖无尺度网络互联网的级联特性中间盒子 典型网络协议脆弱性IP协议安全性分析IPSec&#xff08;IP Security)IPv6问题 ICMP协议安…

宝石收集,tarjan

0宝石收集 - 蓝桥云课 (lanqiao.cn) nint(input()) s0input() mint(input()) mp[[] for i in range(n1)] for i in range(m):a,bmap(int,input().split())a1b1mp[a].append(b)import sys sys.setrecursionlimit(100000000) dfn[0 for i in range(n1)] low[0 for i in range(n1…