2013年8月18日
摘要: Retrievedfrom "http://wiki.codeblocks.org/index.php?title=Keyboard_Shortcuts"Keyboard ShortcutsEditor FunctionShortcut KeyUndo last actionCtrl + ZRedo last actionCtrl + Shift + ZCut selected textCtrl + XCopy selected textCtrl + CPaste text from clipboardCtrl + VSelect all textCtrl + ASwap 阅读全文
posted @ 2013-08-18 18:15 ∑求和 阅读(379) 评论(0) 推荐(0)
摘要: 链接:http://www.cnblogs.com/54zyq/p/3222818.html题意:中文题~思路:线段树点修改,求区间中的最大值。#include#includeusing namespace std;#define lson l,m,rt>1; build(lson); build(rson); PushUP(rt);}void update(int p,int s,int l,int r,int rt){ if(l==r) { MAX[rt]=s; return; } int m=(l+r)>>1; ... 阅读全文
posted @ 2013-08-18 16:45 ∑求和 阅读(184) 评论(0) 推荐(0)
摘要: 链接:http://acm.hdu.edu.cn/showproblem.php?pid=4666题意:给出若干个n维的点,求它们的最远曼哈段距离。参考:http://www.cnblogs.com/lmnx/articles/2479747.htmlPOJ 2926 Requirements:http://poj.org/problem?id=2926#include#includeusing namespace std;const int maxn=60000+5;int a[maxn][7];int q,k,w;multiset m[40];void solve(int s,int fl 阅读全文
posted @ 2013-08-18 11:23 ∑求和 阅读(192) 评论(0) 推荐(0)