C. RMQ with ShiftsTime Limit:1000msCase Time Limit:1000msMemory Limit:131072KB64-bit integer IO format:%lld Java class name:MainIn the traditional RMQ...
分类:
其他好文 时间:
2014-07-16 19:25:07
阅读次数:
242
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
D. BillboardTime Limit:8000msCase Time Limit:8000msMemory Limit:32768KB64-bit integer IO format:%I64d Java class name:MainAt the entrance to the unive...
分类:
其他好文 时间:
2014-07-13 22:55:45
阅读次数:
299
目测我已经写了好几十篇博文,再这样下去就不好找了。因此将此汇总帖置顶,并即时更新,以方便查找(Ctrl+F即可)。带有“推荐”是我觉得可以见人的,推荐大家(也包括我)没事看看,温故知新。
分类:
其他好文 时间:
2014-07-13 21:33:29
阅读次数:
304
A. Test for JobTime Limit:5000msCase Time Limit:5000msMemory Limit:65536KB64-bit integer IO format:%lld Java class name:MainMr.Dog was fired by his co...
分类:
其他好文 时间:
2014-07-13 19:42:42
阅读次数:
314
B. Balanced LineupTime Limit:5000msCase Time Limit:5000msMemory Limit:65536KB64-bit integer IO format:%lld Java class name:MainFor the daily milking, ...
分类:
其他好文 时间:
2014-07-13 19:40:47
阅读次数:
227
【喵"的Android之路】【基础篇(一)】【Java面向对象基础】数据类型与运算符1、数据类型介绍在Java中,数据类型分为两种:基本数据类型和引用类型。基本数据类型共8种,见下表:基本数据类型字节数二进制位数最小值最大值默认值byte18-bit-2^7+2^7 - 10short216-bit...
分类:
编程语言 时间:
2014-07-13 19:12:41
阅读次数:
271
论文啊,04年一个人的论文。原来线段树还可以这么用。贴代码。#include#include#includeusing namespace std;const int MAX=10005;class BIT{public:int a[MAX<<1];void insert(int pos,int x...
分类:
其他好文 时间:
2014-07-13 19:08:03
阅读次数:
221
处理器使用的是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