摘要:
dp 数论 树 阅读全文
摘要:
https://www.luogu.com.cn/problem/P5367 给定一个全排列,求出它是 1 ~ \(n\) 所有全排列的第几个,答案对 998244353 取模。 答案就是 \(\sum_{i = 1}^{n} res_{a_i} (n - i)!\)。\(res_x\) 表示剩下的 阅读全文
摘要:
2400 阅读全文
摘要:
树状数组+扫描线 阅读全文
摘要:
2500 字符串hash+数据结构 阅读全文
摘要:
2400 阅读全文
摘要:
2500 阅读全文
摘要:
2600 二分+构造+图 阅读全文
摘要:
题目链接: https://acm.hdu.edu.cn/showproblem.php?pid=4389 题目大意: 给出一个函数 \(f\) int f ( int x ) { if ( x == 0 ) return 0; return f ( x / 10 ) + x % 10; } \(T 阅读全文
摘要:
模拟,期望dp 阅读全文