自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

lizhaowei213的博客

活着就要改变世界!

  • 博客(36)
  • 资源 (2)
  • 收藏
  • 关注

原创 HDU 3308 LCIS

LCISTime Limit: 6000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 5890    Accepted Submission(s): 2555Problem DescriptionGiven n integers.You ha

2016-01-31 14:59:27 355

原创 Android开发 解决"ADB Not Responding"ADB占用冲突

在Android Studio里给真机调试的时候出现了"ADB Not Responding"。如果在环境均配置无误的情况下,一般原因都是那些PC上的安卓相关软件占用了ADB,比如,QQ,百度,360,各种刷机ROOT软件。解决方法:使用DOS命令首先进入控制台win+r->cmdadb运行的默认端口是5037, 因此通过命令行 netstat -aon |findstr

2016-01-30 21:26:17 510

原创 SPOJ SUBST1 New Distinct Substrings

SUBST1 - New Distinct Substringsno tags Given a string, we need to find the total number of its distinct substrings.InputT- number of test cases. TOutputFor each test case output o

2016-01-28 16:13:01 627

原创 UVA 11388 GCD LCM

#include long long G,L;int main(){ int t; scanf("%d",&t); while(t--) { scanf("%lld%lld",&G,&L); if(L%G!=0) pr

2016-01-28 16:10:06 347

原创 HDU 2147 kiki's game

kiki's gameTime Limit: 5000/1000 MS (Java/Others)    Memory Limit: 40000/10000 K (Java/Others)Total Submission(s): 8869    Accepted Submission(s): 5285Problem DescriptionRecently kiki has

2016-01-28 16:08:57 271

原创 UVA 11538 Chess Queen

组合数学题排列组合算横的加竖的再算斜的,用数学公式化简,就能得到最后答案的公式了。#include #include using namespace std;long long m,n;int main(){ while(scanf("%lld%lld",&m,&n)>0) { if(m==0&&n==0)

2016-01-28 16:04:07 363

原创 CSU 1228 ACM小组的数字游戏

1228: ACM小组的数字游戏Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 27  Solved: 18[Submit][Status][Web Board]Descriptiongestapolur近来喜欢上了一种填数字的游戏,如下图所示的4×4方格中,我们要选择从数字1到16来填满这十六个格子(Aij,其中i=

2016-01-27 13:10:50 723

原创 CSU 1003 UC Browser

1003: UC BrowserTime Limit: 1 Sec  Memory Limit: 128 MBSubmit: 1386  Solved: 465[Submit][Status][Web Board]DescriptionBrother Xi has recently bought a smart mobile phone. Now he surfs In

2016-01-27 13:05:05 1307

原创 CSU 1401 插入排序

1401: 插入排序Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 218  Solved: 108[Submit][Status][Web Board]Description每次选择序列最左边的数,然后将其插入到序列中任意一个位置。求至少需要重复进行多少次上述操作,才可以将序列变为一个递增序列。Input

2016-01-27 13:02:33 439

原创 CodeForces 501B Misha and Changing Handles

B. Misha and Changing Handlestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputMisha hacked the Codeforces site. Then h

2016-01-27 11:59:05 905

原创 CodeForces 501A Contest

A. Contesttime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputMisha and Vasya participated in a Codeforces contest. Unfor

2016-01-27 11:56:50 449

原创 CodeForces 617A Elephant

A. Elephanttime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAn elephant decided to visit his friend. It turned out tha

2016-01-26 12:54:21 338

原创 CodeForces 614B Gena's Code

B. Gena's Codetime limit per test0.5 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputIt's the year 4527 and the tanks game that we all kn

2016-01-26 11:34:13 778

原创 CodeForces 614A Link/Cut Tree

A. Link/Cut Treetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputProgrammer Rostislav got seriously interested in the

2016-01-25 22:28:31 599

原创 UVA 11646 Athletics Track

题目链接http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=23833这题完全是数学几何题,用几何知识解一下就得出来结果的公式了,一开始题没读明白。计算几何简单题。#include #include #define PI 3.14159265358979int main(){

2016-01-24 21:03:42 351

原创 CSU 1098 Happy watering

1098: Happy wateringTime Limit: 1 Sec  Memory Limit: 16 MBSubmit: 132  Solved: 60[Submit][Status][Web Board]DescriptionGBQC国的小明家里有N棵树,每天小明都会给其中一棵树浇水,每次浇水后,树都会长高一些,但由于树的品种不同,每次增长的高度也有所区别。

2016-01-23 18:49:56 504

原创 CSU 1469 Handles

1469: HandlesTime Limit: 1 Sec  Memory Limit: 128 MBSubmit: 258  Solved: 65[Submit][Status][Web Board]Description  There are N·M handles on the ground. Every handle can be in one of tw

2016-01-23 18:16:47 331

原创 POJ 2533 Longest Ordered Subsequence

Longest Ordered SubsequenceTime Limit: 2000MS Memory Limit: 65536KTotal Submissions: 42063 Accepted: 18507DescriptionA numeric sequence of ai is ordered ifa1 a2 a

2016-01-23 17:45:56 319

原创 POJ 3671 Dining Cows

Dining CowsTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 7758 Accepted: 3282DescriptionThe cows are so very silly about their dinner partners. They

2016-01-23 12:45:01 736

原创 POJ 3617 Best Cow Line

Best Cow LineTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 15366 Accepted: 4343DescriptionFJ is about to take his N (1 ≤ N ≤ 2,000) cows to the annu

2016-01-23 12:38:59 284

原创 CodeForces 603A Alternative Thinking

A. Alternative Thinkingtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputKevin has just recevied his disappointing res

2016-01-21 20:58:19 856 1

原创 CodeForces 609C Load Balancing

C. Load Balancingtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputIn the school computer room there are n servers whi

2016-01-21 12:34:49 335

原创 CodeForces 615A Bulbs

A. Bulbstime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputVasya wants to turn on Christmas lights consisting of m bulbs

2016-01-21 12:30:45 307

原创 CodeForces 14D Two Paths

D. Two Pathstime limit per test2 secondsmemory limit per test64 megabytesinputstandard inputoutputstandard outputAs you know, Bob's brother lives in Flatland. In Flatland

2016-01-20 22:21:29 671

原创 CodeForces 584E Anton and Ira

E. Anton and Iratime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAnton loves transforming one permutation into another

2016-01-20 09:20:40 374

原创 HDU 5522 Numbers

NumbersTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/262144 K (Java/Others)Total Submission(s): 924    Accepted Submission(s): 517Problem DescriptionThere are n numbers A1,

2016-01-19 19:02:10 387

原创 CodeForces 27E Number With The Given Amount Of Divisors

E. Number With The Given Amount Of Divisorstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputGiven the number n, find

2016-01-19 17:51:12 471

原创 CodeForces 527D Clique Problem

D. Clique Problemtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputThe clique problem is one of the most well-known NP

2016-01-19 08:30:28 481

原创 CodeForces 527C Glass Carving

C. Glass Carvingtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputLeonid wants to become a glass carver (the

2016-01-18 11:32:11 523

原创 HDU 3911 Black And White

Black And WhiteTime Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4447    Accepted Submission(s): 1297Problem DescriptionThere are

2016-01-17 15:31:15 538

原创 CodeForces 584D Dima and Lisa

D. Dima and Lisatime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputDima loves representing an odd number as th

2016-01-17 15:05:09 527

原创 CodeForces 527A Playing with Paper

A. Playing with Papertime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputOne day Vasya was sitting on a not so

2016-01-17 14:57:42 329

原创 CodeForces 527B Error Correct System

B. Error Correct Systemtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputFord Prefect got a job as a web dev

2016-01-17 14:25:17 283

原创 POJ 3667 Hotel

HotelTime Limit: 3000MS Memory Limit: 65536KTotal Submissions: 14702 Accepted: 6356DescriptionThe cows are journeying north to Thunder Bay in Canada to gain cul

2016-01-16 14:04:39 238

原创 UVA 11300 Spreading the Wealth

UVA - 11300分金币问题,大白书上的一道题,具体的过程第一次看的感觉很神奇,后来边看边想,确实这个中位数求的很有道理。这道题通过建模列n个方程,可以抽象成给定数轴上n个点,在数轴上的所有点中,中位数离所有点的距离之和最小。想了想,假设最优点向中位数点左侧移动d距离,那么原来在左边的点距离之和减去a个d,原来在右边的点距离之和加上a个d.总距离不变。但是中位数和最优点之间

2016-01-13 22:06:58 258

原创 UVA 11729 Commando War

UVA - 11729寒假到了,刷题又开始了。贪心小水题按照J的值排降序,判断做完上一次最耗时的事情后,这一次做完结束的时间是在后还是在前,在前则表明上一次做完的时候,这一次早已做完,在后,则取B的累加+这一次的J#include#include#define N 1005using namespace std;typedef struct{

2016-01-13 18:59:50 344

Gson.jar谷歌官方解析Json利器(2.2.4)

谷歌官方解析Json利器,方便好用高效,谁用谁知道。

2015-11-26

Volley.jar 安卓通信框架

安卓通信知名强悍框架Volley,把jar包导入项目即可

2015-11-26

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除