题目:http://acm.hdu.edu.cn/showproblem.php?pid=2085import java.util.Scanner;public class 核反应堆2085 { public static void main(String[] args) { Scanner inp ...
分类:
其他好文 时间:
2020-02-08 00:20:25
阅读次数:
62
fiddler下载安装:https://www.cnblogs.com/mini-monkey/p/11286264.html 证书安装失败:https://blog.csdn.net/g_optimistic/article/details/89925244 无法抓取https:https://w ...
分类:
其他好文 时间:
2020-02-06 23:05:29
阅读次数:
130
这里简单理解:简单工厂又叫静态工厂;是将工厂方法的方法体加上static 问题来了,什么是开闭原则?又有哪些设计原则呢? 开闭原则就是说对扩展开放,对修改关闭。在程序需要进行拓展的时候,不能去修改原有的代码,实现一个热插拔的效果。所以一句话概括就是:为了使程序的扩展性好,易于维护和升级。想要达到这样 ...
分类:
其他好文 时间:
2020-02-06 22:46:44
阅读次数:
120
hdu4773:http://acm.hdu.edu.cn/showproblem.php?pid=4773 题意:给你两个相离的圆,以及一个点,求所有和这两个圆相切,并且经过该点的圆。 我们先画出满足题意的圆,然后把这三个圆反演,给定的两个圆因为不经过p点,反演后是两个圆,然后ans圆经过p点,所 ...
分类:
其他好文 时间:
2020-02-06 18:07:21
阅读次数:
56
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12268487.html 1。发工资 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2021 Problem Description 作为杭电的老师,最盼望的日 ...
分类:
其他好文 时间:
2020-02-06 15:02:22
阅读次数:
97
Problem Description Input include include include using namespace std; vector desk; int main(){ int n, m; while (~scanf ("%d %d", &n, &m)){ desk.clear ...
分类:
其他好文 时间:
2020-02-05 21:49:21
阅读次数:
66
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2047 思路:先是列出了四个,但是没发现规律,然后开始画递归树,在其中找到了规律,算出递归式为f(n) = 2*[f(n-1)+f(n-2)] 递归树分析如下(有点潦草,看不懂可以留言,大致模型为嵌套): ...
分类:
编程语言 时间:
2020-02-04 20:18:33
阅读次数:
85
Switch Game 原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2053Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Problem ...
分类:
其他好文 时间:
2020-02-04 15:40:35
阅读次数:
71
You are given a positive integer n, please count how many positive integers k satisfy kk≤nkk≤n. InputThere are no more than 50 test cases. Each case o ...
分类:
其他好文 时间:
2020-02-04 12:22:03
阅读次数:
55
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12258409.html 偶数求和(98min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2015 Problem Description 有一个长度为n ...
分类:
其他好文 时间:
2020-02-04 11:11:16
阅读次数:
72