上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 1、:配置好相应环境和检查tomcat8.5能否运行,详见https://www.cnblogs.com/LJHAHA/p/10461697.html 2、将tomcat8.5下的webapps目录中所有内容备份到另一文件夹(bak)中,再清空webapps目录; 3、进入eclipse,配置好相应 阅读全文
posted @ 2019-03-02 17:38 里昂静 阅读(1567) 评论(0) 推荐(0) 编辑
摘要: 首先: 了解我电脑中各类需要的软件的位置: 1、Java jdk1.8.0_191处在C盘目录下(C:\Program Files\Java\jdk1.8.0_191),Java jre1.8.0_191也处在该目录下(C:\Program Files\Java\jre1.8.0_191); 2、t 阅读全文
posted @ 2019-03-02 16:44 里昂静 阅读(2199) 评论(0) 推荐(0) 编辑
摘要: 题目:http://acm.hdu.edu.cn/showproblem.php?pid=5745 C++ bitset的用法:https://www.cnblogs.com/magisk/p/8809922.html 题目: 题意:给两个字符串 a 和 b ,b可以进行变换,规则是可以任意交换相邻 阅读全文
posted @ 2019-03-01 19:28 里昂静 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 链接:http://acm.hdu.edu.cn/showproblem.php?pid=4035 题意: 有n个房间,由n-1条隧道连通起来,实际上就形成了一棵树, 从结点1出发,开始走,在每个结点i都有3种可能: 1.被杀死,回到结点1处(概率为ki) 2.找到出口,走出迷宫 (概率为ei) 3 阅读全文
posted @ 2019-03-01 17:27 里昂静 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 描述 Diablo III is an action role-playing video game. A few days ago, Reaper of Souls (ROS), the new expansion of Diablo III, has been released! On hear 阅读全文
posted @ 2019-03-01 17:07 里昂静 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 链接:http://acm.hdu.edu.cn/showproblem.php?pid=4747 题目大意:给一个含有n个数的序列 ns[1~n],定义函数 mex(l,r)为区间 [l,r] 中未出现的最小的非负整数,求序列ns所有区间的 mex 和。 Sample Input Sample O 阅读全文
posted @ 2019-03-01 16:28 里昂静 阅读(278) 评论(0) 推荐(0) 编辑
摘要: In mathematics, the nth harmonic number is the sum of the reciprocals of the first n natural numbers: In this problem, you are given n, you have to fi 阅读全文
posted @ 2019-02-28 20:53 里昂静 阅读(713) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://vjudge.net/contest/277958#problem/K 题目大意:直线上的两个坐标N和K,其中从N出发到达K,可以变换为+1、-1或者*2,每变换一次坐标,需要花费一分钟,求最短时间到达K。 代码: 1 #include<iostream> 2 #inclu 阅读全文
posted @ 2019-02-24 20:28 里昂静 阅读(860) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://vjudge.net/contest/277958#problem/J 题意:每组测试案例给出两个数a,b,从数字a开始,每次只改变当前数中的一位数,使之仍为一个素数,问经过多少步骤能够得到数字b。 代码: 1 #include<algorithm> 2 #include< 阅读全文
posted @ 2019-02-24 20:17 里昂静 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 题目:https://vjudge.net/contest/277958#problem/G 题意:输入一个val和n,然后n个数,然后求n个数相加等于val的值。 代码: 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 阅读全文
posted @ 2019-02-24 19:58 里昂静 阅读(272) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页