Codeforces Round #732 (Div. 2)
2021/7/14 6:05:13
本文主要是介绍Codeforces Round #732 (Div. 2),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
B. AquaMoon and Stolen String
这题就是把一个字符串拿走了,但是给了我们原来的和剩下的,所以别看中途配对又交换了,直接相减就行了。
代码
string s[N], s1[N]; int main() { //ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while (t--) { int n, m; cin >> n >> m; for (int i = 1; i <= n; i++) cin >> s[i]; for (int i = 1; i < n; i++) cin >> s1[i]; for (int i = 0; i < m; i++) { map<int, int=""> m; for (int j = 1; j <= n; j++) { m[s[j][i]]++; } for (int j = 1; j < n; j++) { m[s1[j][i]]--; } for (int j = 'a'; j <= 'z'; j++) if (m[j] == 1) putchar(j); } cout << endl; fflush(stdout); } }
C. AquaMoon and Strange Sort
这题比赛就不会了,还是思路重要啊。注意到每个数移动的距离都是偶数,所以原本奇数位置上的数字还会再奇数位置上,但是奇数位置之间可以随便交换。(偶数位置类似)。所以排序后检验即可。
代码
int a[N],b[N][2]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while (t--) { memset(b, 0, sizeof(b)); int n; cin >> n; for (int i = 1; i <= n; i++) { cin >> a[i]; b[a[i]][i % 2]++; } sort(a + 1, a + 1 + n); for (int i = 1; i <= n; i++) { b[a[i]][i % 2]--; } bool f = true; for (int i = 1; i < +n; i++) { if (b[a[i]][0] != 0 || b[a[i]][1] != 0) { f = false; break; } } if (f) cout << "YES" << endl; else cout << "NO" << endl; } }
这篇关于Codeforces Round #732 (Div. 2)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解