2023年7月24日
摘要: B. Obtaining the String 题意:给一个a串和b串,问经过多少次相邻的交换,可以将a串转为b串 思路:暴力枚举,当我们枚举到a的后面某个位置有,就把他交换过来 代码: #include<bits/stdc++.h> using namespace std; int const N 阅读全文
posted @ 2023-07-24 18:49 IR101 阅读(7) 评论(0) 推荐(0) 编辑
摘要: C - Find it! 题意:给一个图,让我们找到一个环 思路:首先我们找到环上的一点,点的映射即可,然后我们从这个点进行找到他的环 代码: #include<bits/stdc++.h> using namespace std; #define int long long int t; int 阅读全文
posted @ 2023-07-24 10:30 IR101 阅读(16) 评论(0) 推荐(0) 编辑