2023年2月19日
摘要: 回文 思路:求组合后的字符串大小即可,每一个字符都是一个回文串 代码: #include <bits/stdc++.h> using namespace std; string s; long long huiwen(string a){ long long n = a.size(), ans = 阅读全文
posted @ 2023-02-19 20:01 IR101 阅读(46) 评论(0) 推荐(0) 编辑
摘要: P8800 [蓝桥杯 2022 国 B] 卡牌 做法:使用优先队列,只能拿到40分,可以二分最多可以形成多少套牌,时间复杂度Onlogn 代码: #include <bits/stdc++.h> using namespace std; #define ll long long ll n,m; in 阅读全文
posted @ 2023-02-19 19:17 IR101 阅读(7) 评论(0) 推荐(0) 编辑