Bryce1010模板 先找到数组A中的循环节,再找到数组B中的循环节,如果B中的循环节是A中循环节的循环因子,说明可以配对,结果累积起来. #include<bits/stdc++.h> using namespace std; const int MAXN=1e6+10; const int MOD=1e9+7; #define LL long long LL a[MAXN],b[MAXN]; LL num1[MAXN],num2[MAXN]; int main() { LL n,m; L…