HDU Aragorn's Story
题目链接
树抛入门裸题,这题是区间修改单点查询,于是套树状数组就OK了
代码:
#include
#include
#include
#include
using namespace std;
const int N = 50005;
inline int lowbit(int x) {return x&(-x);}
i...
分类:
其他好文 时间:
2014-09-30 14:37:49
阅读次数:
199
_CodeSignature/CodeResources ??
archived-expanded-entitlements.xcent
Xcode6 新生成的。
keychain-access-groups:
Keychain access groups allows an application to use the system keychain to sto...
分类:
其他好文 时间:
2014-09-30 04:19:12
阅读次数:
455
入门题
#include
#include
#include
using namespace std;
const int maxn = 50010;
struct edge
{
int v, next;
}e[maxn*2];
int n, m, q;
int first[maxn], cnt;
int top[maxn], tid[maxn], rank[maxn], sz[ma...
分类:
其他好文 时间:
2014-09-29 19:36:51
阅读次数:
252
樹鏈剖分學習blog:http://blog.csdn.net/jiangshibiao/article/details/24669751關於這題的學習blog:http://blog.csdn.net/acdreamers/article/details/10594121下面來說說樹鏈剖分の我的理...
分类:
其他好文 时间:
2014-09-25 12:27:18
阅读次数:
235
之前山寨了一个新浪微博(iOS开发之山寨版新浪微博小结),这几天就山寨个微信吧。之前已经把微信的视图结构简单的拖了一下(IOS开发之微信山寨版),今天就开始给微信加上具体的实现功能,那么就先从微信的聊天界面开始吧。提到封装是少不了写代码的,在封装组件的时候,为了组件的可移植性,我们就不能用sto.....
分类:
微信 时间:
2014-09-25 12:23:38
阅读次数:
411
什么是Story Maps Story Maps 是轻量级、开源 Web 应用程序。 Story Maps 将使用 ArcGIS Online、Esri 基于云的制图系统创建的 Web 地图与多媒体内容、文本、照片、视频和音频相组合,以便您讲述有关世界的故事。 开源代码 采用的方式是在ArcGIS ...
分类:
其他好文 时间:
2014-09-24 17:18:57
阅读次数:
249
原文:重新想象 Windows 8.1 Store Apps (81) - 控件增强: 加载本地 html, 智能替换 html 中的 url 引用, 通过 Share Contract 分享 WebView 中的内容, 为 WebView 截图[源码下载]
重新想象 Windows 8.1 Sto...
分类:
移动开发 时间:
2014-09-23 16:51:24
阅读次数:
388
Problem Description
《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel...
分类:
其他好文 时间:
2014-09-22 17:39:12
阅读次数:
209
Problem Description
《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel ...
分类:
其他好文 时间:
2014-09-20 21:15:59
阅读次数:
267
写了1h的DFS,简直被自己的代码吓哭了。。不过起码还是思路清晰,QUQ~
说一下题意吧: 题意是求一条最长路,最多能经过一次转弯,并且其角度只能为90度。
拿第一个样例来说:(0,1)->(1,2)->【转弯】(2,1) ,所以答案是3.
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5024
代码如下:
#include
#in...
分类:
其他好文 时间:
2014-09-20 20:02:59
阅读次数:
272