Slim SpanTime Limit: 5000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:352264-bit integer IO format:%lld Java class name:MainG...
分类:
其他好文 时间:
2014-11-13 22:15:06
阅读次数:
280
Pleasant sheep and big big wolfTime Limit: 1000msMemory Limit: 32768KBThis problem will be judged onHDU. Original ID:304664-bit integer IO format:%I64...
分类:
其他好文 时间:
2014-11-13 20:37:40
阅读次数:
237
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nodes in each of...
分类:
其他好文 时间:
2014-11-13 14:45:51
阅读次数:
172
Frequency HoppingTime Limit: 10000msMemory Limit: 131072KBThis problem will be judged onUVA. Original ID:1124864-bit integer IO format:%lld Java class...
分类:
其他好文 时间:
2014-11-13 14:21:50
阅读次数:
276
original link:http://pangyi.github.io/blog/20141105/ce-shi-wen-jian-tou/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 01:57:31
阅读次数:
139
Arrays //包含操作数组的各种方法 字段 int binarySearch(Object[] obj, Object key) //使用二分法搜索数组中指定的数,返回索引 Object[] copyOf(Object[] original, int newLength) //复制origi.....
分类:
编程语言 时间:
2014-11-12 01:53:44
阅读次数:
215
original link:http://pangyi.github.io/blog/20141105/ce-shi-wen-jian-tou/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 00:31:00
阅读次数:
131
original link:http://pangyi.github.io/blog/20141105/ce-shi-wen-jian-tou/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 00:29:46
阅读次数:
159
Prince and PrincessTime Limit: 3000msMemory Limit: 32768KBThis problem will be judged onHDU. Original ID:468564-bit integer IO format:%I64d Java class...
分类:
其他好文 时间:
2014-11-12 00:15:14
阅读次数:
276
#include
#include
int main()
{
//通过位运算实现数字的反转(操作的对象必须是整数)
unsigned int original =0x123;
unsigned int result =0;
unsigned int mask =0xF; //掩码
result |=original&mas...
分类:
其他好文 时间:
2014-11-11 19:10:57
阅读次数:
228