
Spoj
philpanic9
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spoj PHONELST - Phone List Trie树
题目地址:https://www.spoj.com/problems/PHONELST/ Phone List Given a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let’s say the phone catalogue...原创 2019-04-06 10:20:21 · 297 阅读 · 0 评论 -
Spoj ASSIGN - Assignments dp+bitmasking
题目链接:https://www.spoj.com/problems/ASSIGN/ 参考链接: 1.https://github.com/fazlulkabir94/spoj-problem-solution/blob/master/ASSIGN - Assignments.cpp 2.https://www.quora.com/What-is-__builtin_popcount-in-c++...原创 2019-04-06 20:37:44 · 249 阅读 · 0 评论 -
Spoj FIBOSUM - Fibonacci Sum 矩阵快速幂
题目链接:https://www.spoj.com/problems/FIBOSUM/ The fibonacci sequence is defined by the following relation: F(0) = 0 F(1) = 1 F(N) = F(N - 1) + F(N - 2), N >= 2 Your task is very simple. Given two n...原创 2019-04-08 19:43:29 · 1098 阅读 · 0 评论