摘要:
近日codeforeces做题记录 阅读全文
摘要:
一些leetcode上摘的有意思的算法题 阅读全文
摘要:
dsu+树链剖分+树分治 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 const int NUME_PLANETS = 10;//星球数量 9 const int TIME_COUNT = 20; 10 const int BORDER_LIMIT = 3200;//所... 阅读全文
摘要:
这个人又笨又懒,出的题无聊又不想出题 prob1: 给定一个长度为n且只包含26个小写字母的字符串S 给定k,k <= n <= 1e5 需要选出S的长度为k的子序列T,同时T要满足m个限制 每个限制形如('a', 'b'),表示T中‘a’的出现次数要严格大于'b' 输出T solution: 先b 阅读全文