UVALive - 3942 Remember the Word Neal is very curious about combinatorial problems, and now here comes a problem about words. Knowing that Ray has a p ...
分类:
其他好文 时间:
2017-07-09 14:50:02
阅读次数:
259
题意 给定一个字符串和若干个单词,询问能把字符串分解成这些单词的方案数。比如abcd ,有单词a,b,ab,cd:就可以分解成a+b+cd或者ab+cd。 分析 trie树—>DP 代码 (感谢qrc巨神的细心指导,并不是很细心的我竟然也AC了,qrc太巨了!) ...
分类:
其他好文 时间:
2017-07-09 14:46:46
阅读次数:
117
1.tutorial04.cpp // Include standard headers #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #i... ...
分类:
其他好文 时间:
2017-07-09 12:34:24
阅读次数:
169
习题 9: 打印,打印,打印 1 # Here's some new strange stuff, remember type it exactly. 2 3 days = "Mon Tue Wed Thu Fri Sat Sun" 4 months = "Jan\nFeb\nMar\nApr\nM ...
分类:
编程语言 时间:
2017-06-30 01:12:43
阅读次数:
282
原文 忘记在哪里看到这本书的介绍了,据说是一个小子自学1年,完成了4年麻省理工的课程,然后写了一本他学习方法的书。我搜了一下,居然中英文版都有,就花时间好好读了一遍,就是这本。 以下是这本书的完整笔记: 整体性学习法是一套能更准确描述大脑如何运作的学习理论。 整体性学习法基于这3个idea: 结构 ...
分类:
其他好文 时间:
2017-06-25 16:58:27
阅读次数:
251
awk改变了OFS,$0却没变化一个文件1.txt,内容如下 目的把列变行,输出为: a b c d e 脚本如下: 理论上应该实现我们想要的 a b c d e 问题出在这里 Understanding $0 It is important to remember that $0 is the f ...
分类:
其他好文 时间:
2017-06-20 17:58:33
阅读次数:
142
Problem Description Password security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are ...
分类:
其他好文 时间:
2017-06-17 17:17:57
阅读次数:
182
E. Army Creation As you might remember from our previous rounds, Vova really likes computer games. Now he is playing a strategy game known as Rage of ...
分类:
其他好文 时间:
2017-06-16 22:06:10
阅读次数:
168
Remember-Me 功能 概述 Remember-Me 是指网站能够在 Session 之间记住登录用户的身份,具体来说就是我成功认证一次之后在一定的时间内我可以不用再输入用户名和密码进行登录了,系统会自动给我登录。这通常是通过服务端发送一个 cookie 给客户端浏览器,下次浏览器再访问服务端 ...
分类:
编程语言 时间:
2017-06-16 16:46:01
阅读次数:
291