微软近期Open的职位:Job DescriptionGroup: Search Technology Center Asia (STCA)/Search Ads - MTTitle: Software Engineer IILocation: Suzhou, ChinaThe R&D of Sea...
分类:
其他好文 时间:
2014-10-30 11:32:10
阅读次数:
163
题意: 给一些平面上的点,然后给一些查询(x,y),即以(x,y)为原点建立坐标系,一个人拿走第I,III象限的点,另一个人拿II,IV象限的,点不会在任何一个查询的坐标轴上,问每次两人的点数差为多少。解法:离线树状数组。点不在坐标轴上,即点不共线使这题简单了不少,可以离散化点,也可以不离散化,因为...
分类:
编程语言 时间:
2014-10-30 01:38:22
阅读次数:
343
题目:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your max...
分类:
其他好文 时间:
2014-10-30 01:37:50
阅读次数:
247
Ignatius and the Princess II
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4865 Accepted Submission(s): 2929
Problem Descriptio...
分类:
其他好文 时间:
2014-10-30 00:14:59
阅读次数:
204
微软近期Open的职位:Job DescriptionGroup: Search Technology Center Asia (STCA)/Search Ads - UXTitle: Software Engineer IILocation: Suzhou, ChinaExcited to hel...
分类:
其他好文 时间:
2014-10-30 00:09:12
阅读次数:
149
Spring整合Hibernate1到底整合什么? I:为了让Spring的IOC容器去生成SessionFactory II:为了让Hibernate能使用Spring的声明式事务2如何整合(整合步骤) 1加入Hibernate的必须jar包,然后再加入commons-logging-1.1.3....
分类:
编程语言 时间:
2014-10-29 21:09:39
阅读次数:
202
Part I. The CV ReviewPass the CV to THREE developersEach dev should mark YES/NO on the CVReject any CVs with TWO No'sPart II. The Phone Interview1. Wh...
分类:
其他好文 时间:
2014-10-29 19:09:12
阅读次数:
222
【__doc__】
>>> str.__doc__ #内置文档字符串; 模块级
"str(object='') -> string\n\nReturn a nice string representation of the object.\nIf the argument is a string, the return value is the same object."
>>> str.upper.__doc__ #内置文档字符串; 函数级
'S.upper() -> string\n...
分类:
编程语言 时间:
2014-10-29 14:58:23
阅读次数:
307
题目:和上一题一样,就是这时候给定的数字可能有重复。做法:只要将num排好序,然后判断如果当前的值等于前一个的话,那么就跳过,就不会有重复的人。果然是AC了。 1 class Solution { 2 public: 3 vector > permuteUnique(vector &num)...
分类:
其他好文 时间:
2014-10-29 01:55:09
阅读次数:
154
吉哥系列故事——完美队形IITime Limit: 3000/1000 MS (Java/Others)Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 1075Accepted Submission(s): 388Probl...
分类:
其他好文 时间:
2014-10-29 01:38:29
阅读次数:
179