E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
۩۩.._ACM
zoj3761(BFS)
地址:http://
acm
.zju.edu.cn/onlinejudge/showProblem.do?
ten_three
·
2020-09-17 11:14
搜索
牛客 2018年湘潭大学程序设计竞赛 H 统计颜色(暴力)
链接:https://www.nowcoder.com/
acm
/contest/105/H来源:牛客网时间限制:C/C++1秒,其他语言2秒空间限制:C/C++32768K,其他语言65536K64bitIOFormat
城南的花
·
2020-09-17 11:01
杂谈
Use
acm
e.sh to issue LET'S ENCRYPT cert with cygwin for Windows OS
标题为什么是英文因为用中文写太长了而且还拗口,干脆用英文写...现在证书申请越来越普及,逐渐从收费向免费过渡,所以从申请证书来讲现在是比较容易的,出名的也很多比如赛门铁克,GeoTrust等等,我这篇写的是最近比较火的LET'SENCRYPT,同样是免费CA证书,支持自动续签,申请证书非常方便申请证书的方式有2种,一种是certbot,之前申请单个站点的证书的时候用过,然后也只能申请单个站点,所以
elysion_k
·
2020-09-17 11:17
SSL
SSL
CA
LET'S
ENCRYPT
写在第3届校内赛之后
第3届
ACM
校内赛结束了,可以说也真正结束了我3年的
ACM
生活,我也算经历了3次不同角色的校内赛。2007——我是一个参赛者。2008——我是一个组织者。2009——我是一个观赛者。
北斗之首
·
2020-09-17 11:40
Acm
POJ 1860 Currency Exchange (bellman-ford判负环)
CurrencyExchange题目链接:http://
acm
.hust.edu.cn/vjudge/contest/122685#problem/EDescriptionSeveralcurrencyexchangepointsareworkinginourcity.Letussupposethateachpointspecializesintwoparticularcurrenciesandp
dituonian8372
·
2020-09-17 11:33
数据结构与算法
URAL 2037 Richness of binary words (回文子串,找规律)
Richnessofbinarywords题目链接:http://
acm
.hust.edu.cn/vjudge/contest/126823#problem/BDescriptionForeachintegerifrom1ton
dituonian8372
·
2020-09-17 11:33
数据结构与算法
HDU 5680 zxa and set (数学 推导结论)
zxaandset题目链接:http://
acm
.hust.edu.cn/vjudge/contest/121332#problem/GDescriptionzxahasaset,whichhaselementsandobviouslynon-emptysubsets.Foreachsubsetof
dituonian8372
·
2020-09-17 11:33
数据结构与算法
URAL 2045 Richness of words (回文子串,贪心)
Richnessofwords题目链接:http://
acm
.hust.edu.cn/vjudge/contest/126823#problem/JDescriptionForeachintegerifrom1ton
dituonian8372
·
2020-09-17 11:33
数据结构与算法
HDU 2190 简单递推
题目:http://
acm
.hdu.edu.cn/showproblem.php?
霜刃未曾试
·
2020-09-17 11:32
递推
HDU 4393 Throw nails(贪心加模拟,追及问题)
题目链接:http://
acm
.hust.edu.cn/vjudge/contest/view.action?
ddmxynl793173
·
2020-09-17 11:50
杭电
ACM
_2010
2010c[code]#includeintmain(){intm,n,i;inta,b,c;//依次为个位,百位和十位intflag=0;while(scanf("%d%d",&m,&n)!=EOF){for(i=m;i<=n;i++){a=i%10;b=i/100;c=(i-b*100)/10;if(a*a*a+b*b*b+c*c*c==i){if(flag==1)printf("");pri
锦煦
·
2020-09-17 11:18
C语言基础
c语言
算法
杭电
ACM
_2011
2011c[code]#includeintmain(){intm,n,i,j,tmp;doublenum;while(scanf("%d",&m)!=EOF){for(i=0;i
锦煦
·
2020-09-17 11:18
C语言基础
算法
杭电
ACM
_2007
C语言代码:2007c[code]#includeintmain(){intm,n;intx=0,y=0;inti,t;while(scanf("%d%d",&m,&n)!=EOF){if(m>n){t=m;m=n;n=t;}for(i=m;i<=n;i++){if(i%2==0)x+=i*i;elsey+=i*i*i;}//forprintf("%d%d\n",x,y);x=0;y=0;}//w
锦煦
·
2020-09-17 11:17
C语言基础
c语言
杭电
ACM
2000
C语言代码:[code]#includeintmain(){chara,b,c,d,t;while(scanf("%c%c%c",&a,&b,&c)!=EOF){if(a>b){t=a;a=b;b=t;}if(b>c){t=b;b=c;c=t;}if(a>b){t=a;a=b;b=t;}scanf("%c",&d);printf("%c%c%cn",a,b,c);}return0;}[/code]
锦煦
·
2020-09-17 11:17
C语言基础
算法
hdu1231 并查集模板题
题目链接:http://
acm
.hdu.edu.cn/showproblem.php?pid=1213模板题,没什么好说的。.
panyyer
·
2020-09-17 11:59
acm/icpc
CDOJ 1300 Easy Problem
队友说是大水题代码://Templatefor
ACM
#defineLLlonglong#defineINF0x7FFFFFFF#defineLINF0x7FFFFFFF7FFFFFFF#include#
sky-edge
·
2020-09-17 11:27
水题
CDOJ
Mashmokh and
ACM
题目链接:http://codeforces.com/problemset/problem/414/B题意:Asequenceoflintegersb1, b2, ..., bl(1 ≤ b1 ≤ b2 ≤ ... ≤ bl ≤ n)iscalledgoodifeachnumberdivides(withoutaremainder)bythenextnumberinthesequence.More
ckmoonfish
·
2020-09-17 11:53
codeforces
并查集问题--source
acm
1232
某省调查城镇交通状况,得到现有城镇道路统计表,表中列出了每条道路直接连通的城镇。省政府“畅通工程”的目标是使全省任何两个城镇间都可以实现交通(但不一定有直接的道路相连,只要互相间接通过道路可达即可)。问最少还需要建设多少条道路?测试输入包含若干测试用例。每个测试用例的第1行给出两个正整数,分别是城镇数目N(#include#includeusingnamespacestd;intmain(){in
冰的影子
·
2020-09-17 11:01
区间dp-hdu-4745-Two Rabbits
题目链接:http://
acm
.hdu.edu.cn/showproblem.php?
Accagain
·
2020-09-17 11:28
动态规划
hdu5456 Matches Puzzle Game(记忆化dfs+dp)
A-B=C可以转化成B+C=A题解:http://m.blog.csdn.net/blog/stl112514/48678307http://
acm
.hdu.edu.cn/showproblem.php
ccyy-
·
2020-09-17 11:23
困难
dp
hdu 1024 经典DP 最大m字段和
a:b;}intmain(){freopen("//media/学习/
ACM
/input.txt","r",stdin);while(~scanf("%d%d",&m,&n)){inti,
azheng51714
·
2020-09-17 11:58
动态规划
hdu-3671-tarjin/割点方案
http://
acm
.hdu.edu.cn/showproblem.php?
all00747
·
2020-09-17 11:09
php
2018寒假
acm
训练计划
任务总览:1.《aha》1,3,4章2.紫书7,9,10章(不知道有没有时间学8章)3.队里训练赛跟做4.全国多校算法学习5.cf2天一套6.c++想做的有点多,先试试看自己能不能做得来这些,再调整时间安排:2.7—2.111,3,4,章全国多校学习dp,直播两场一二场比赛重做2天一套cf晚上学习c++2.12-2.17紫书7章全国多校学习直播课件跟进三四场重现重做2天一套cf2.18—2.23紫
aa18392407063
·
2020-09-17 11:25
c/c++
《动态规划》hdoj
acm
3.3.7 二维费用背包
#includeintv[105],time[105],f[105][1005];intmax(intx,inty){returnx>y?x:y;}intmain(){intt,i,j,k;scanf("%d",&t);while(t--){intn,m,l;scanf("%d%d%d",&n,&m,&l);for(i=1;i=1;j--){for(k=l;k>=time[i];k--){f[j]
ACM_sjtsjt
·
2020-09-17 11:49
HDU 5893 List wants to travel
题目链接:http://
acm
.split.hdu.edu.cn/showproblem.php?
Silenceneo
·
2020-09-17 11:46
线段树
树链剖分
hdu
树链剖分
线段树
HDU1231
题目链接:http://
acm
.hdu.edu.cn/showproblem.php?
T_world
·
2020-09-17 11:40
杂
acm
算法
杭电
[XUPT_
ACM
]寒假第二次比赛题解
写在前面:本次比赛共12题,比赛总体难度相比第一次比赛略有提高,但是整体难度依旧不难,本次比赛打乱了题目,题目难度随机,导致了简单题出题人数减少。本次比赛的题目难度跨度不是特别大,但是题目类型增多,由于每个人擅长的领域不同,可能对结果有一定影响。比赛地址:https://vjudge.net/contest/284308下面就对比赛的题目做一下简单的解答(题目方法不唯一,给出的解法仅供参考):神秘
Radium_1209
·
2020-09-17 11:34
比赛题解
立方体成像(2004年
ACM
国际大学生程序设计决赛第3题)
Yournewcompanyisbuildingarobotthatcanholdsmalllightweightobjects.Therobotwillhavetheintelligencetodetermineifanobjectislightenoughtohold.Itdoesthisbytakingpicturesoftheobjectfromthe6cardinaldirections
PK0071
·
2020-09-17 11:27
历年国际ACM比赛
NEUQ
ACM
OJ:1149--【C语言训练】排序问题
题目如下利用数组存储,简单的排序,从大到小输出,但是输出时注意末尾无空格1.冒泡排序intmain(){inttmp,a[11];//从大到小排序for(intj=0;j#includeintmain(){inta[12]={0};//定义数组范围取大避免越界sort(a,a+10);//注意sort排序为升序且左闭右开for(inti=9;i>=0;i--){if(i==0)cout<
NEUQacmer
·
2020-09-17 11:21
ACM
——01——1008: 【入门】将小写字母转换为大写字母 【运算符】
题目描述从键盘输入二个小写字母,请你编写程序将读入的2个小写字母转换为大写字母输入输入一行2个小写字母,每个字母用一个空格隔开输出输出一行显示2个对应的大写字母样例输入ab样例输出ABC++代码#includeusingnamespacestd;intmain(){charx,y,q,w;cin>>x>>y;q=x-32;w=y-32;cout<<q<<""<<w<<endl;return0;}
Mereco_321
·
2020-09-17 10:45
ACM——01
acm
c++
ACM
——01——1004: 【入门】输入一个三位数,把个位和百位对调后输出 【运算符】
题目描述输入一个三位自然数,然后把这个数的百位数与个位数对调,输出对调后的数输入输入一行,只有一个整数x(100usingnamespacestd;intmain(){inta,s,d,f,sum;cin>>a;s=a/100;d=(a%100)/10;f=a%10;sum=s+d*10+f*100;cout<<sum<<endl;return0;}
Mereco_321
·
2020-09-17 10:44
ACM——01
ACM
——01——1002: 【入门】已知一个圆的半径,求解该圆的面积和周长 【运算符】
输入输入只有一行,只有1个整数。输出输出只有两行,一行面积,一行周长。(保留两位小数)。令pi=3.1415926样例输入1样例输出3.146.28C++代码#include#includeusingnamespacestd;constfloatpi=3.1415926;intmain(){floata,sum,add;cin>>a;sum=2*pi*a;add=pi*a*a;cout<
Mereco_321
·
2020-09-17 10:44
ACM——01
ACM
——01——1006: 【入门】倒序输出一个四位整数 【运算符】
题目描述任意读入一个四位整数,颠倒后输出。输入输入一行,只有一个整数x(1000usingnamespacestd;intmain(){inta,s,d,f,g,sum;cin>>a;s=a/1000;d=(a%1000)/100;f=(a%100)/10;g=a%10;sum=s+d*10+f*100+g*1000;cout<<sum<<endl;return0;}
Mereco_321
·
2020-09-17 10:44
ACM——01
ACM
——01——1007: 【入门】温度转换 【运算符】
题目描述编一程序,将摄氏温度换为华氏温度。公式为:f=9/5*c+32。其中f为华氏温度,c是摄氏温度。输入输入一行,只有一个整数c输出输出只有一行,包括1个实数。(保留两位小数)样例输入50样例输出122.00C++代码#include#includeusingnamespacestd;intmain(){doublef,c;cin>>c;f=c*9/5+32;cout<
Mereco_321
·
2020-09-17 10:44
ACM——01
ACM
——01——1005: 【入门】求商数和余数 【运算符】
题目描述输入a,b两个整数,编程求出a除以b得到的商和余数。输入输入一行,只有两个整数(中间有空格)。输出输出只有一行,两个整数(中间有空格)。样例输入73样例输出21C++代码#includeusingnamespacestd;intmain(){inta,s,d,f;cin>>a>>s;d=a/s;f=a%s;cout<<d<<""<<f<<endl;return0;}
Mereco_321
·
2020-09-17 10:44
ACM——01
HDU 2159 FATE (二维费用背包,模板题)
链接:http://
acm
.hdu.edu.cn/showproblem.php?
L_oser
·
2020-09-17 10:32
背包问题
kill
并查集(集合合并) + 缩点
题目:http://
acm
.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2588题意:告诉一张n点m边的图,求哪些边是桥。
LYU0820
·
2020-09-17 10:31
数据结构与算法
概率dp学习整合
这些大神,蔑视我这zz垃圾转自:http://blog.csdn.net/zy691357966/article/details/46776199有关概率和期望问题的研究摘要在各类信息学竞赛中(尤其是
ACM
LLL_yx
·
2020-09-17 10:01
概率dp
HDU - 1272 小希的迷宫(看似并查集的水题)
题目链接:http://
acm
.hdu.edu.cn/showproblem.php?
LLL_yx
·
2020-09-17 10:01
水题
HDU 1423 动态规划—最长公共上升子序列
题目链接:http://
acm
.hdu.edu.cn/showproblem.php?pid=1423说明一点:dp[i][j]为序列1前i个元素和序列2前j个元素最长公共上升子序列多长.
Fighting_Dream
·
2020-09-17 10:47
#动态规划#
Mashmokh and
ACM
CodeForces - 414B 【DP】
B.Mashmokhand
ACM
timelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputMashmokh'sboss
Conchpeng
·
2020-09-17 10:14
动态规划之基础DP
Codeforces Round #240 (Div. 1)B---Mashmokh and
ACM
(水dp)
Mashmokh’sboss,Bimokh,didn’tlikeMashmokh.Sohefiredhim.Mashmokhdecidedtogotouniversityandparticipatein
ACM
insteadoffindinganewjob.HewantstobecomeamemberofBamokh
tokers
·
2020-09-17 10:42
DP
codeforces
5W2H | 关于写博客的七点反思
第一次写博客是2015年了,在CSDN和博客园上面,当时写文章是为了记录
ACM
竞赛的题解,陆陆续续写了几十篇。
算法码上来
·
2020-09-17 10:41
CodeForces 414B Mashmokh and
ACM
(DP)
B.Mashmokhand
ACM
timelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputMashmokh'sboss
GODLINESS_
·
2020-09-17 10:39
动态规划
hdu 2159
题目:http://
acm
.hdu.edu.cn/showproblem.php?
Visioner7
·
2020-09-17 10:56
dp
HDU3269 P2P File Sharing System
http://
acm
.hdu.edu.cn/showproblem.php?pid=326909宁波。模拟题。
Chromer_cn
·
2020-09-17 10:23
HDOJ
亚洲赛区原题
p2p
file
struct
system
ZOJ3621 Factorial Problem in Base K
http://
acm
.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3621题意就是给一个k进制数s,求s!在k进制下末尾有多少个0。
Chromer_cn
·
2020-09-17 10:23
ZOJ
XMU1344建食堂
http://
acm
.xmu.edu.cn/JudgeOnline/problem.php?id=1344厦门大学在翔安也有了个新校区,新校区有n栋宿舍楼。
Chromer_cn
·
2020-09-17 10:23
小OJ的比赛
vector
struct
HDU3264 Open-air shopping malls
http://
acm
.hdu.edu.cn/showproblem.php?pid=326409宁波计算几何。计算半个圆面积是需要推一下。
Chromer_cn
·
2020-09-17 10:23
亚洲赛区原题
HDOJ
HDU4216Computational Geometry?
http://
acm
.hdu.edu.cn/showproblem.php?
Chromer_cn
·
2020-09-17 10:22
HDOJ
上一页
98
99
100
101
102
103
104
105
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他