题目链接题意:给一个m*n的矩阵, 其中一些格子是空地(F), 其他是障碍(R)。找一个全部由F组成的面积最大的子矩阵, 输出其面积乘以3的结果。思路:如果用枚举的方法,时间复杂度是O(m^2 n^2);因为不但要枚举每一个点,而且矩阵的大小不知道,所以还要枚举长和宽。可以通过枚举每一个点,求该点所...
分类:
其他好文 时间:
2014-07-27 10:15:02
阅读次数:
171
题目链接非原创 原创地址:http://blog.csdn.net/jingqi814/article/details/26117241题意:输入n座山的信息(山的横坐标,高度,山底宽度),计算他们的轮廓线,即露出来的表面边长,有些山是重叠的不计。空白地带不计,每座山都是等腰三角形。分析:大白书P4...
分类:
其他好文 时间:
2014-07-26 17:10:52
阅读次数:
329
CONTENTS过程(查看数据集的属性)1 PROC CONTENTS DATA=data-set;2 RUN;LABEL1 /*LABEL分为两种,但均不能超过256个字符*/2 LABEL=data-set (给数据集定义一个Label)3 LABEL statement (赋予每个变量一个la...
分类:
其他好文 时间:
2014-07-24 16:55:15
阅读次数:
274
※效果
※简介
显示进度的按钮,可用于数据的提交,系统登录等,动画效果很棒,提高用户体验。
※使用说明
Declare button inside your layout XML file:
android:id="@+id/btnWithText"
android:layout_width="196dp"
android:la...
分类:
移动开发 时间:
2014-07-23 13:25:56
阅读次数:
250
今天安装了一个Debian的虚拟机,安装的时候本来想选英语的,但是时区只能用美国的时区,于是就换上了中文的,没有提示选择时区。发现在shell中文还是乱码,于是毅然的把语言更改成英语的。打开文件localesuvim /etc/default/locale显示LANG="zh_CN.UTF-8"LA...
分类:
其他好文 时间:
2014-07-22 23:14:12
阅读次数:
179
01.#include
02.#include
03.#include
04.
05.typedef std::list list_any;
06.
07.//关键部分:可以存放任意类型的对象
08.void fill_list(list_any& la)
09.{
10. la.push_back(1000)...
分类:
其他好文 时间:
2014-07-21 22:47:37
阅读次数:
249
After doing Ray a great favor to collect sticks for Ray, Poor Neal becomes very hungry. In return for Neal's help, Ray makes a great dinner for Neal. ...
分类:
其他好文 时间:
2014-07-21 00:32:54
阅读次数:
243
It is said that the people of Menggol lived in caves. A tribe's caves were connected to each other with paths. The paths were so designed that there w...
分类:
其他好文 时间:
2014-07-19 19:03:48
阅读次数:
344
题目:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=25&problem=2288&mosmsg=Submission+received+...
分类:
其他好文 时间:
2014-07-19 15:09:20
阅读次数:
313
Panagola, The Lord of city F likes to parade very much. He always inspects his city in his car and enjoys the welcome of his citizens. City F has a re...
分类:
其他好文 时间:
2014-07-18 12:09:26
阅读次数:
304