题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4793解题报告:在一个平面上有一个圆形medal,半径为Rm,圆心为(0,0),同时有一个圆形范围圆心也是(0,0),半径为R,R > Rm,现在向平面上投掷一枚硬币,硬币初始的圆心位置为(x,y),半径...
分类:
其他好文 时间:
2014-11-29 07:02:43
阅读次数:
145
敌兵布阵Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 46897Accepted Submission(s): 19876 Problem De...
分类:
其他好文 时间:
2014-11-28 21:22:54
阅读次数:
198
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4791解题报告:打印店提供打印纸张服务,需要收取费用,输入格式是s1 p1 s2 p2 s3 p3...表示打印区间s1到s2张纸的单价是p1,打印区间s2 到s3的单价是p2....最后是sn到无穷大的...
分类:
其他好文 时间:
2014-11-28 20:02:28
阅读次数:
225
Intersection of Two Linked ListsWrite a program to find the node at which the intersection of two singly linked lists begins.For example, the followin...
分类:
其他好文 时间:
2014-11-28 17:46:22
阅读次数:
265
还记得之前,发过一篇阶段性总结与未来规划。。结果由于最近rp爆发(保研成功+进wf)后者显然靠bin神,前者也是运气。因此,放松了一段时间。然后就开始刷usaco了,原因是不用花时间找解题报告在NOCOW上全部都有,很是方便。所以只需单独开一片随笔把每天做题总结一下。Chapter1-Getting...
分类:
其他好文 时间:
2014-11-28 00:53:51
阅读次数:
252
这道题的难点应该就是想到这是一道二分图匹配想到这点以后,就是建图了//by baobaopangzi88#include #include #include #include #include #include #include #include #include #include #include...
分类:
其他好文 时间:
2014-11-27 23:39:40
阅读次数:
319
Text JustificationGiven an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) j...
分类:
其他好文 时间:
2014-11-27 23:29:28
阅读次数:
352
看过题解后如果觉得还算有用,请帮忙加点我所在团队博客访问量http://www.cnblogs.com/newbe/http://www.cnblogs.com/ne走迷宫wbe/p/4069834.htmlhttp://www.cnblogs.com/newbe/p/4072005.html求赞求...
分类:
其他好文 时间:
2014-11-27 21:49:04
阅读次数:
210
【原题】
Given preorder and inorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
【解析】
题意:根据二叉树先序遍历和中序遍历的结果,构造二叉树。跟 根据中序遍历和后序遍历结...
分类:
其他好文 时间:
2014-11-27 12:50:15
阅读次数:
155
使用马拉车算法,时间复杂度为O(n),算法详细解释在上一篇文章中。//// main.cpp// Longest Substring//// Created by Bowie Hsu on 14/11/21.// Copyright (c) 2014年 Bowie Hsu . All ...
分类:
其他好文 时间:
2014-11-27 12:38:37
阅读次数:
137