借鉴视频:https://www.bilibili.com/video/BV1gx41127d7?p=2 借鉴博客:https://blog.csdn.net/wangjian8006/article/details/7868864 一,汇总 矩阵乘法可以用来求递推式 基本形式:由一个 基础矩阵(用 ...
分类:
其他好文 时间:
2020-07-19 16:00:31
阅读次数:
69
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn=105; const int mod=1e9+7; int n; struct matrix { ll a[maxn][maxn]; m ...
分类:
其他好文 时间:
2020-07-18 22:14:26
阅读次数:
75
总目录 > 6 数学 > 6.2 快速幂 前言 很早就知道的一个知识点了,应用场景很多,很实用。 子目录列表 1、概念 2、算法描述 3、具体思路 4、代码 5、应用 6.2 快速幂 1、概念 快速幂,学名为二进制取幂(Binary Exponentiation),是一个在 O(log n) 时间内 ...
分类:
其他好文 时间:
2020-07-18 00:51:00
阅读次数:
53
题目链接 点击打开链接 题目解法 考虑枚举最优状态是哪些边解锁了,哪些边没有。这样真的有 $2^n$ 种情况吗?并不是的。将所有边按照解锁需要走过边的数量排序。解锁边的顺序必然是排好序的这样。所以考虑只解锁前 \(i\) 条边,走到 \(n\) 的最短距离是多少。 所以我们可以这样:每次枚举新解锁了 ...
分类:
其他好文 时间:
2020-07-16 00:11:18
阅读次数:
64
题目描述 下面数列的第 n 项: \(f(0) = a_0 ,f(1) = a_1 ,f(2) = a_2\) \(f(n) = b×f(n ? 1) + c×f(n ? 2) + d×f(n ? 3) + e (n ≥ 3)\) 输入格式 包含 1 行,共 8 个整数:\(a_0、a_1、a_2、 ...
分类:
其他好文 时间:
2020-07-15 15:54:31
阅读次数:
52
##题面 Evolution is a long, long process with extreme complexity and involves many species. Dr. C. P. Lottery is currently investigating a simplified mo ...
分类:
其他好文 时间:
2020-07-12 22:30:56
阅读次数:
68
##题面 Problem Description Queues and Priority Queues are data structures which are known to most computer scientists. The Queue occurs often in our dai ...
分类:
其他好文 时间:
2020-07-12 17:05:48
阅读次数:
132
定义 \(a^{p - 1} \equiv 1 \pmod p\) 变式: $a^{p - 2} \equiv \dfrac{1} \pmod p \Leftrightarrow a \times a^{p - 2} \equiv 1 \pmod p $ 前提 \(p\) 是质数, 且 \(a\) ...
分类:
其他好文 时间:
2020-07-11 22:45:51
阅读次数:
67
题目大意 给你一张图,你刚开始在1号节点,每次你可以走到相邻的节点,每条边有一个边权,代表需要花费的时间。问有多少种方案刚好t时间走到n号节点。答案对2009取模。 对于 $30%$ 的数据,保证 \(n \leq 5\),\(t \leq 30\)。 对于 $100%$ 的数据,保证 $2 \le ...
分类:
其他好文 时间:
2020-06-25 13:34:59
阅读次数:
51
题目链接 题目: 题解:很简单、经典的的一道快速幂的题 注意一下用LL型就ok。 代码: 1 #include <map> 2 #include <set> 3 #include <list> 4 #include <stack> 5 #include <queue> 6 #include <deq ...
分类:
其他好文 时间:
2020-06-25 11:32:48
阅读次数:
78