摘要: 1 The magic of WHH problem 长为$n$的序列,每次可以将相同数字之间的其他数字变成这个数字,可以得到多少种不同的序列?可以不操作。 solution 若$[i,j]\(之间的颜色相同,则\)[i,j]$之间的操作是没有必要进行的。即每个位置只能与两侧最近的同色位置操作。 设 阅读全文
posted @ 2020-10-23 17:50 刘子闻 阅读(136) 评论(0) 推荐(0)
摘要: 1 并查集 #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> using namespace std; inline int read(){ int x=0,f=1; char ch=getchar() 阅读全文
posted @ 2020-10-23 07:53 刘子闻 阅读(118) 评论(0) 推荐(0)