滑雪Time Limit:1000msMemory Limit:65536KBThis problem will be judged on PKU. Original ID:108864-bit integer IO format:%lld Java class name:MainMichael喜欢...
分类:
其他好文 时间:
2014-07-16 21:57:18
阅读次数:
178
最长公共连续子序列Time Limit:1000msMemory Limit:65536KB64-bit integer IO format:%lld Java class name:Main给你两个序列S1和S2,长度分别是L1,L2 (1 2 #include 3 #include 4 #...
分类:
其他好文 时间:
2014-07-16 21:54:37
阅读次数:
192
问题:No JVM installation found. Please install a 64-bit JDK. If you already have a JDK installed, define a JAVA_HOME variable in Computer > System Prope...
分类:
移动开发 时间:
2014-07-16 21:39:23
阅读次数:
261
Code RefactoringTime Limit:3000msMemory Limit:131072KBThis problem will be judged on UVA. Original ID:1087964-bit integer IO format:%lld Java class na...
分类:
其他好文 时间:
2014-07-16 20:36:39
阅读次数:
175
简介:有点时间没有在Linux环境下战斗了,刚好需要研究一下curl的API使用,试图编译链接了一个最简单的curl例子,发现了很多问题,最后决定把过程记录下来,以防止未来再犯类似的简单错误,如果能帮助到某位过客,也算是幸事!食材:Ubuntu 12.04 64-bit 安装了基本的gcc、g++、...
分类:
其他好文 时间:
2014-07-16 20:26:57
阅读次数:
244
A. LCISTime Limit:2000msCase Time Limit:2000msMemory Limit:32768KB64-bit integer IO format:%I64d Java class name:MainGiven n integers.You have two ope...
分类:
其他好文 时间:
2014-07-13 23:34:39
阅读次数:
272
处理器使用的是ARMv6-M Thumb指令集,包括大量的32位的使用Thumb-2技术的指令。表7-22列出了Cortex-M0指令和它们的周期数。周期计数以零等待状态的系统为基准。表7-22 Cortex-M0指令和它们的周期数操作描述汇编指令周期MOVE8-bit immediateMOVS ...
分类:
其他好文 时间:
2014-07-13 00:40:43
阅读次数:
224
题意:求0-B的满足
思路:数位DP,记忆化搜索
#include
#include
#include
#include
using namespace std;
int A, B;
int dp[20][200000];
int bit[20];
int dfs(int cur, int num, int flag) {
if (cur == -1)
return num ...
分类:
其他好文 时间:
2014-07-13 00:02:35
阅读次数:
338
原文出处: EMC中文支持论坛基本IO Graphs:IO graphs是一个非常好用的工具。基本的Wireshark IO graph会显示抓包文件中的整体流量情况,通常是以每秒为单位(报文数或字节数)。默认X轴时间间隔是1秒,Y轴是每一时间间隔的报文数。如果想要查看每秒bit数或byte数,点击...
分类:
其他好文 时间:
2014-07-11 22:13:58
阅读次数:
294
帮朋友做的,好像是一个面试题。暴力方式。
#include
#include
#include
//判断这个数是不是由1、2、2、3、4、5几位数字组成
int func(int n)
{
int a[5] = {0};
for(int i = 0; i < 6; i++)
{
int bit = n % 10;
n /=...
分类:
编程语言 时间:
2014-07-10 23:41:35
阅读次数:
228