Knowing yourself is the height of wisdom. 了解自己就是大智慧。 Two-day holiday, even I didn't have enought time to know about her, I could feel I am not the typ ...
分类:
其他好文 时间:
2016-08-11 00:31:39
阅读次数:
191
1、合并 >>> l1=[1,2,3,'e']>>> l2=['f',34,'feel']>>> l1+l2[1, 2, 3, 'e', 'f', 34, 'feel'] 2、重复 >>> l1[1, 2, 3, 'e']>>> l1*2[1, 2, 3, 'e', 1, 2, 3, 'e'] 3、 ...
分类:
编程语言 时间:
2016-08-05 00:35:00
阅读次数:
270
题目链接:点击打开链接
思路:
该题转化一下, 就是枚举每一个数, 找到以这个数为最小值的最大区间(因为没有负数)。 那么一个办法是预处理出每一个数左边第一个比他大的数的位置, 和右边第一个比他大的数的位置, 这个可以用构造单调栈的线性算法处理出来: 我们构造一个单调上升栈, 标记栈里每个元素在实际中的位置, 加入一个元素a[i]的时候, 如果栈顶元素大于他, 那么将栈顶元素出队列, i就是...
分类:
其他好文 时间:
2016-07-15 21:27:18
阅读次数:
140
Feel Good Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 12409 Accepted: 3484 Case Time Limit: 1000MS Special Judge Description Bill is de ...
分类:
编程语言 时间:
2016-07-11 12:23:30
阅读次数:
209
1619 - Feel Good Time limit: 3.000 seconds Bill is developing a new mathematical theory for human emotions. His recent investigations are dedi- cated ...
分类:
其他好文 时间:
2016-07-10 21:44:24
阅读次数:
287
Problem Description
The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked it up, the maze began to shake, and the doggie could feel the ground sinking. He rea...
分类:
其他好文 时间:
2016-07-04 15:40:44
阅读次数:
181
进大学前,正式开始ACM 现在离OI退役已经过了近两年 很多东西似乎都回到了最起初的地方呢 哈哈...大一大概又是奋斗的一年吧 在入CTF前,来ACM还愿 还是那句话,never feel sorry about your ambitions 不管怎么样,never mind and keep on ...
分类:
其他好文 时间:
2016-07-03 23:18:52
阅读次数:
137
Ubuntu addict and loving it , the answerer 's intro attracted me.When I first read a book on linux ubuntu application, I was very moved, and feel trem ...
分类:
其他好文 时间:
2016-06-18 11:26:18
阅读次数:
133
I feel so lucky to meet and know you - Yanli. I remember the author Congwen Shen has said "I know you'll be here .So I wait you patiently.And luckily, ...
分类:
其他好文 时间:
2016-05-26 14:20:27
阅读次数:
155
摘 要:Swing已是一个比较老的工具集了,在美观的用户界面出来之前需要开发很长时间。它缺少一些你在开发富UI时所需的组件。幸运地是,像 Substance,SwingX及Java Look-and_Feel图形仓库这样的开源项目使这一切变得不同。作者Steven Haines向你展示了如何无痛苦地 ...
分类:
编程语言 时间:
2016-05-26 14:18:23
阅读次数:
319