摘要:
#include<iostream> #include<algorithm> #include<cstring> using namespace std; const int maxn=110010; char t[maxn],s[maxn*3]; int p[maxn*3],lens; void 阅读全文
摘要:
题目链接:https://ac.nowcoder.com/acm/contest/3003/J 思路: 方法① f1(1)=k1+b1=(k1)+(b1) f2(f1(1))=k2∗(f1(1))+b2=k2∗k1+k2∗b1+b2=(k2∗k1)+(k2∗b1+b2) f3(f2(f1(1)))= 阅读全文