算法 dp 思路 直接用 set 统计即可。 代码 #include <bits/stdc++.h> using namespace std; /* */ int n, m, k; set <int> dp[105][105]; int a[105][105]; int main() { ios::sync_with_std…
思路 题目一眼 tarjan 求桥,属于模板题目。 代码 #include <bits/stdc++.h> using namespace std; int n, a[155][155]; int dfn[1005], l[1005], cnt, vis[1005]; //vector <int> ans; int cntt…
介绍了 Tarjan 求割点和桥。
前因 我当时得知了他有一个网站,就去找 BUG 了。 经过 经查找,我发现他的网站的留言板没有过滤 HTML 标签。 所以,我就发送了一段 JS 代码: <script> window.onbeforeunload=(function(event){ while(1);//使得他的网站在关闭的时候会崩溃。 return "出现…
学校的比赛记录。
拓扑排序与关键路径的学习笔记。
模意义下的乘法逆元
Codeforces Round 923 A-E 题解