摘要:
Problem 阿克曼(Arkmann)函数 𝐴(𝑚,𝑛) 中,m与n的定义域是非负整数且本题中m include include include include include define io_opt ios::sync_with_stdio(false);cin.tie(0);cout 阅读全文
摘要:
Problem 小b有一个01序列A,她想知道A有多少个非空连续子序列和为S。 你能帮帮她吗? Solution 暴力,可以搞一下剪枝。 另外也可以枚举位置,建一个mp[num],记录枚举到i位置时,前面的每个前缀和num出现过几次,每次把当前前缀和减去m在之前出现的数量加入答案即可。 Code i 阅读全文