摘要:
AlphaGo Zero论文阅读笔记 原论文:《Mastering the game of Go without human knowledge》 简述: 论文提出了一种新的围棋人工智能算法AlphaGo Zero,该算法可以在完全无监督的情况下进行训练,并且超越了之前的AlphaGo Fan和Al 阅读全文
摘要:
字符串的不同字串个数 给定长度为$n$的字符串$s$,求该字符串的不同字串的个数 朴素暴力 时间复杂度$O(n^3logn)$ 枚举子串的左右端点,取出后使用set去重 string s; set<string> ans; for (int l = 0; l < s.length();l++){ f 阅读全文
摘要:
支持双端插入的可撤销回文自动机 打多校看到的科技,板子++ 参考来源:https://ac.nowcoder.com/acm/contest/view-submission?submissionId=53195473 template <class T, int SIZE, T offset> st 阅读全文