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
杭电OJ刷题
杭电
1048
* 日期:2011-3-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:53
杭电
杭电
1014 Uniform Generator
* 日期:2011-2-7 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:53
generator
杭电
1021 Fibonacci Again
nbsp;* 日期:2011-2-16 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
fibonacci
杭电
1020 Encoding
* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
encoding
杭电
1019 Least Common Multiple
* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
com
杭电
1017 A Mathematical Curiosity
nbsp;* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
Math
杭电
1018 Big Number
nbsp;* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
number
LeetCode
OJ刷题
之14【Longest Common Prefix】
Longest Common Prefix Write a function to find the longest common prefix string amongst an array of strings.求字符串数组中字符串的最长公共前缀。 String Solutions 1 Longest Common Prefix -- 11~13ms 第一
·
2015-10-31 11:05
LeetCode
LeetCode
OJ刷题
之13【Roman to Integer】
Roman to Integer Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.意思就是:给出一个罗马数字,返回其对应的整数 num( 0<=num<=3999)表示;罗马数字范围从 0-->3999罗马数字有:
·
2015-10-31 11:05
LeetCode
LeetCode
OJ刷题
之12【Integer to Roman】
Integer to Roman Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.意思就是:给出一个整数 num( 0<=num<=3999),返回其对应的罗马数字表示;罗马数字有: |I |V |X |L |C |D
·
2015-10-31 11:05
LeetCode
杭电
2014
1 #include <iostream> 2 #include <iomanip> 3 using namespace std; 4 5 int main() 6 { 7 int n; 8 double max,min,sum,aver; 9 double a[110] = {0}; 10 while
·
2015-10-31 11:11
杭电
杭电
2012
1 #include <iostream> 2 3 using namespace std; 4 5 int is_prime(int ); 6 int main() 7 { 8 int x,y,val; 9 while (cin>>x>>y && x||y) 10 { 11
·
2015-10-31 11:11
2012
杭电
2007
1 #include <iostream> 2 using namespace std; 3 4 int ji(int); 5 int ou(int); 6 int main() 7 { 8 int m,n,x,y; 9 while (cin >> m >> n) 10 { 11 i
·
2015-10-31 11:10
2007
杭电
2001
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { double x1,y1,x2,y2; double result; while (cin>>x1>>y1>>
·
2015-10-31 11:10
杭电
杭电
2000
#include <iostream> using namespace std; #define MAXN 4 int main() { //char arr[MAXN] = {0}; char arr[MAXN]; memset(arr,0,MAXN); while (cin >> arr) {
·
2015-10-31 11:10
杭电
杭电
oj 1002
1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 int nCases; 5 int m[1001], n[1001]; 6 char a[1001], b[1001]; 7 int main() 8 { 9 scanf("%d&qu
·
2015-10-31 11:10
杭电
杭电
2005
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main() 6 { 7 int year,month,day; 8 9 char a; 10 int days_of_month1[13] = {0,31,29,3
·
2015-10-31 11:10
杭电
杭电
2004
1 #include <iostream> 2 using namespace std; 3 char grand(int); 4 int main() 5 { 6 int n; 7 while (cin>> n) 8 { 9 if (n>100 || n<0) 10 {
·
2015-10-31 11:10
杭电
杭电
oj 1001
#include<iostream> using namespace std; int main() { int n = 0, sum; while (cin>>n) { sum = 0; // 这里要清零 for (int i =0; i <= n; i++) {
·
2015-10-31 11:10
杭电
杭电
2035人见人爱A^B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035 #include <cstdlib> #include <iostream> #include <math.h> using namespace std; int main(int argc, char *argv[]) { int
·
2015-10-31 11:16
杭电
杭电
2034人见人爱A-B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2034 #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int m,n; int A[100]={
·
2015-10-31 11:15
杭电
杭电
2031进制转换
#include <cstdlib> #include <iostream> #include <math.h> using namespace std; int main(int argc, char *argv[]) { int n,r; int Remainder[100]={0}; while(cin>
·
2015-10-31 11:15
进制转换
杭电
2033人见人爱A+B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2033 #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int n,residue,quotient;
·
2015-10-31 11:15
杭电
杭电
2030汉字统计(已解决)
#include "stdio.h" int main(int argc, char* argv[]){ int index,sum; char c; scanf("%d",&index); getchar
·
2015-10-31 11:15
汉字
杭电
2029
#include <cstdlib>#include <iostream>#include <string>using namespace std; int main(int argc, char *argv[]){ int flag,n,len; char str[50]; &
·
2015-10-31 11:15
杭电
杭电
2032杨辉三角
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032 做该题时,开始就给出Presentation Error ( 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行) 开始的代码: #include <cstdlib> #include <iostream> using namespac
·
2015-10-31 11:15
杭电
杭电
2028
#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int n; int dividend,max,a[100]={0}; &
·
2015-10-31 11:14
杭电
杭电
2027
#include <cstdlib>#include <iostream>#include <string>using namespace std;int main(int argc, char *argv[]){ int A,E,I,O,U,n,len; char str[100];&nb
·
2015-10-31 11:14
杭电
杭电
2025题
#include <cstdlib>#include <iostream>#include <string>using namespace std; int main(int argc, char *argv[]){ int len; char c; c
·
2015-10-31 11:14
杭电
杭电
2026题答案
#include <cstdlib>#include <iostream>#include <string>using namespace std; int main(int argc, char *argv[]){ int len; char str[100]; &
·
2015-10-31 11:14
杭电
2015
杭电
多校(I)改题表
2015
杭电
多校(I)改题表 题号 HDU 类型 赛时 分配 最终 题解 1001 5288 简单题 √ - √ 1002 5289 简单题 √ - √  
·
2015-10-31 10:31
杭电
2015
杭电
多校(II)改题表
2015
杭电
多校(II)改题表 题号 HDU 类型 赛时 分配 最终 题解 1001 5300 ?
·
2015-10-31 10:31
杭电
HDU_2021——最少RMB问题
Problem Description 作为
杭电
的老师,最盼望的日子就是每月的8号了,因为这一天是发工资的日子,养家糊口就靠它了,呵呵 但是对于学校财务处的工作人员来说,这一天则是很忙碌的一天,财务处的小胡老师最近就在考虑一个问题
·
2015-10-31 10:58
HDU
杭电
2019
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int a[110] = {0};//已经排好的 7 int n,m; 8 while (cin>>n>>m && n||m) 9 { 10
·
2015-10-31 10:15
杭电
杭电
2024
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main() 6 { 7 int n; 8 string str; 9 int flag; 10 while (cin>>n) 11 {
·
2015-10-31 10:15
杭电
杭电
2025
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main() 6 { 7 string str=""; 8 string str2=""; 9 char max; 10
·
2015-10-31 10:15
杭电
恒生电子面试过程纪录
13:00点开始面试,7 Candidates,5
杭电
,2理工。 一面,HR。 1.自我介绍,2M。感觉说的不好,没有条理,没掌握好时间。 2.HR问有谁知
·
2015-10-31 10:24
面试
杭电
胜利大逃亡续
Ignatius再次被魔王抓走了(搞不懂他咋这么讨魔王喜欢)…… 这次魔王汲取了上次的教训,把Ignatius关在一个n*m的地牢里,并在地牢的某些地方安装了带锁的门,钥匙藏在地牢另外的某些地方。刚开始Ignatius被关在(sx,sy)的位置,离开地牢的门在(ex,ey)的位置。Ignatius每分钟只能从一个坐标走到相邻四个坐标中的其中一个。魔王每t分钟回地牢视察一次,若发现Ignatius不
·
2015-10-31 10:24
杭电
杭电
2043密码
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2043 感觉自己读题太不认真啦! 第一次没有考虑密码的长度。欠揍······· AC代码: #include <cstdlib> #include <iostream>
·
2015-10-31 09:12
杭电
杭电
2042不容易系列之二
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2042 这道题是一个递归题! #include <cstdlib> #include <iostream> using namespace std; int f(int n) { if(n==
·
2015-10-31 09:12
杭电
杭电
2039三角形
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2039 这道题提交了五次才AC,可见我的数学功底太差啦! #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) {
·
2015-10-31 09:12
杭电
杭电
2040亲和数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2040 #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int m; cin>
·
2015-10-31 09:12
杭电
杭电
2054A == B ?(未解决 坑爹)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2054 开始还以为这题放在这,太那个了,结果无语······· 提交两次没有AC,坑爹·······&m
·
2015-10-31 09:12
==
杭电
2052Picture
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2052 本题就是一个构造图形的问题: #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { char str[7
·
2015-10-31 09:12
杭电
杭电
2051Bitset
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2051 进制转换问题: #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int n; int a
·
2015-10-31 09:12
bitset
杭电
ACM 题目分类
近期做
杭电
题,就从网上搜了相关的题目分类的日志,具体正确与否,不清楚!
·
2015-10-31 09:11
ACM
何去何从
前几天和一个
杭电
的哥们聊天,说了说他们学校集训的事,他们暑假放一周,隔壁班的周天涯大一的时候就在他们学校的oj上ac了200题,我问他,是不是周天涯把他的女友培养成队员的时候,他说:女队那几个都是极品&
·
2015-10-31 09:20
hdu 1097 A hard puzzle(快速幂取模模板题)
杭电
怎么不认识long long了??改成__int64就对了。。
·
2015-10-31 09:37
HDU
杭电
OJ 提交代码需要注意的问题
杭电
acm 提交代码需要注意的问题 1. 用 Java 的时候类名请用 Main 2.
·
2015-10-31 09:34
代码
胜利大逃亡(
杭电
hdu1253)bfs简单题
胜利大逃亡 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 21759 Accepted Submiss
·
2015-10-31 09:31
HDU
上一页
78
79
80
81
82
83
84
85
下一页
按字母分类:
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
其他