上一篇博客我们讲到了,Fragment的基本使用,相信大家都已经了解怎么去使用了。如果还有不懂得同学可以去看一下,传送门。现在我们来讲解一下Fragment的生命周期。 一、Fragment的事务 再讲Fragment的生命周期之前,一定要讲一下FragmentTransaction也就...
分类:
移动开发 时间:
2014-08-29 17:32:48
阅读次数:
251
之前写过一篇Intent的博客,主要说了一下隐式意图。 传送门:《Android -- Intent》Intent对象构成 Component name、Action、Data、Category、Extras、FlagsComponent name Component name即组件名称,是要处理这...
分类:
移动开发 时间:
2014-08-26 00:23:05
阅读次数:
267
之前写过一篇Json的博客,当时用的是Gson包来解析的,这次来此自带的org.json来解析。传送门:《Gson解析复杂Json数据》JSON的结构 (1) Name/Value Pairs(无序的):类似所熟知的Keyed list、 Hash table、Disctionary和Associa...
分类:
移动开发 时间:
2014-08-25 13:08:24
阅读次数:
316
解题报告
题目传送门
思路:
bfs建图跑一下费用流就行。
#include
#include
#include
#include
#define inf 0x3f3f3f3f
using namespace std;
struct E {
int v,cost,cap,next;
} edge[100000];
int head[1000],cnt,dis[1000],...
分类:
其他好文 时间:
2014-08-23 19:07:51
阅读次数:
243
解题报告
题目传送门
思路:
简单的差分约束
求解max
n-1
以1为起点,n为终点跑一下最短路就可以了,求出的dis[n]就是答案
#include
#include
#include
#include
#define N 5000
#define M 50000
#define inf 0x3f3f3f3f
using namespace std;
struct nod...
分类:
其他好文 时间:
2014-08-23 19:05:21
阅读次数:
255
解题报告
题目传送门
思路:
解方程组:
(a-1)-b
0
Max-Min>=m
源点为Max,求出dis[Max]-dis[Min]
#include
#include
#include
#include
#include
#define N 100001
#define M 550000
#define inf 0x3f3f3f3f
using namespace ...
分类:
其他好文 时间:
2014-08-22 22:38:21
阅读次数:
179
解题报告
题目传送门
题意:
先输入n,m
接下来m行,每行输入A,B,C
输入A B C,表示孩子B最多比孩子A多C块蛋糕,问孩子1与孩子N最多相差多少块蛋糕!
思路:
求解b-a
源点为1
spfa+queue超时,spfa+queue+slf还超时,用stack却过了。
#include
#include
#include
#include
#in...
分类:
其他好文 时间:
2014-08-22 14:29:48
阅读次数:
178
出现这个这个问题是因为发布菜单的JSON字符串中存在Unicode字符我的项目中是因为Serialize序列化时自动将Url中的“&”自动转换成Unicode解决方法就是将json串中的unicode字符解码如何进行unicode解码,传送门
分类:
微信 时间:
2014-08-22 10:36:26
阅读次数:
2070
解题报告
题目传送门
题意:
使得学校网络互通的最小花费,一些楼的线路已经有了。
思路:
存在的线路当然全都利用那样花费肯定最小,把存在的线路当成花费0,求最小生成树
#include
#include
#include
#include
#define inf 0x3f3f3f3f
using namespace std;
int n,m,_hash[1110][1110],...
分类:
其他好文 时间:
2014-08-22 01:39:25
阅读次数:
211
解题报告
题目传送门
题意:
从n×n的矩阵的左上角走到右下角,每次只能向右和向下走,走到一个格子上加上格子的数,可以走k次。问最大的和是多少。
思路:
建图:每个格子掰成两个点,分别叫“出点”,“入点”,
入点到出点间连一个容量1,费用为格子数的边,以及一个容量∞,费用0的边。
同时,一个格子的“出点”向它右、下的格子的“入点”连边,容量∞,费用0。
源点向(0,0)的入点连一个容...
分类:
其他好文 时间:
2014-08-21 22:56:05
阅读次数:
503