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
杭电2546
杭电
2061WA 01
#include<stdio.h> struct mem { char s[50]; double c; double f; }; int main() { struct mem x[60]; int n; int num,i,flag;//num为课程数量 scanf("%d",&
·
2015-11-01 15:49
杭电
杭电
2061WA
#include<stdio.h> struct mem { char s[50]; int c; int f; }; int main() { struct mem x[60]; int n; int num,i;//num为课程数量 scanf("%d",&n); while(n--) { double
·
2015-11-01 15:48
杭电
杭电
2060WA
#include<stdio.h> int main() { int n,num,p,q,i,a[]={2,3,4,5,6,7}; scanf("%d",&n); while(n--) { int sum=0; scanf("%d%d%d",&num,&p,&q); if(nu
·
2015-11-01 15:48
杭电
杭电
2060
#include<iostream> using namespace std; int main() { int n,a,b,c,i,sum,j; cin>>n; while(n--) { sum=0; getchar(); cin>>a>>b>>c; i
·
2015-11-01 15:47
杭电
杭电
1096
一定记住输出格式,最后一个输出时,不再输出换行 #include<stdio.h> int main() { int a,b,n,m; while(scanf("%d",&n)!=EOF) { while(n--) { int sum=0; scanf("%d",&m); w
·
2015-11-01 15:43
杭电
杭电
2546
#include<iostream> #include<algorithm> #include<string.h> using namespace std; int max(int a,int b) { if(a>b) return a; else return b; } int main() { int n,p
·
2015-11-01 15:42
杭电
杭电
2058 龟兔赛跑
#include <iostream> #include <string> using namespace std; #include <algorithm> int main() { // freopen("input.txt", "r", stdin);
·
2015-11-01 15:40
杭电
杭电
2058
#include<stdio.h> int main() { int i,j,sum=0; int n,m; while(scanf("%d%d",&n,&m)&&n!=0&&m!=0) { if(n>m)
·
2015-11-01 15:39
杭电
杭电
2056
#include<iostream> using namespace std; double max(double a,double b) { if(a>b) return a; else return b; } double min(double a,double b) { if(a<b)
·
2015-11-01 15:38
杭电
杭电
2055 另一种
可以用C++来写,就可以回避这个问题 #include<iostream> using namespace std; int main() { int num; char k; int y,x; while(cin>>num) { while(num--) {
·
2015-11-01 15:37
杭电
杭电
2055
#include<stdio.h> int main() { int num,y,x; char k; while(scanf("%d",&num)!=EOF) { while(num--) { scanf(" %c%d",&
·
2015-11-01 15:36
杭电
杭电
2053
#include<stdio.h> int main() { int n,i; while(scanf("%d",&n)!=EOF) { int num=0; for(i=1;i<=n;i++) { if(n%i==0)
·
2015-11-01 15:35
杭电
杭电
2054 WA
#include<stdio.h> #include<string.h> char a[23000],b[23000]; int main() { long len1=0,len2=0,i; int flag=0; scanf("%s",&a);scanf("%s",&am
·
2015-11-01 15:35
杭电
杭电
2053 WA
#include<stdio.h> int main() { int n,i,a[105]; while(scanf("%d",&n)!=EOF) { for(i=0;i<=100;i++) { a[i]=0;
·
2015-11-01 15:34
杭电
杭电
2052
#include<stdio.h> int main() { int a,b,i,j; while(scanf("%d %d",&a,&b)!=EOF) { for(i=0;i<b+2;i++) { if(i==0||i==b+1)
·
2015-11-01 15:33
杭电
杭电
2051
1 #include<stdio.h> 2 int main() 3 { 4 int n,a[20],i,j; 5 while(scanf("%d",&n)!=EOF&&n>0) 6 { 7 8 for(i=0;n/2.0!=0;i++) 9
·
2015-11-01 15:33
杭电
杭电
2049错排
1 #include<stdio.h> 2 int c(int n,int m) 3 { 4 if(m==0||n==m) 5 return 1; 6 else 7 return c(n-1,m)+c(n-1,m-1); 8 } 9 10 int main() 11 { 12 int t
·
2015-11-01 15:32
杭电
杭电
2048
1 #include <stdio.h> 2 float fac(int a)//阶乘 3 { 4 if(a==0) 5 return 1; 6 else 7 return a*fac(a-1); 8 } 9 int main() 10 { 11 int t,i,num; 12 fl
·
2015-11-01 15:31
杭电
杭电
2048错排
错排公式是f(n)=(n-1)(f(n-1)+f(n-2)) 不过还是稍稍的分析一下这个入门题 就像一个将信件放入不同信箱的例子, 我们先考虑前n-1的情况 1.前n-1个信件全部都放错了,那么我们考虑n个的情况时,只需要将第N个信件与前n-1个信件的任意一 个做一个交换就ok了,这个结果是(n-1)*f(n-1) 2.然后再考虑前n-1个并没有完全放错,那么要想使第n个信封加入时和和其中的某一
·
2015-11-01 15:31
杭电
杭电
2043改动
做了一点改动 1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int m,c,i; 6 char s[51]; 7 while(scanf("%d",&m)!=EOF) 8 { 9 whil
·
2015-11-01 15:30
杭电
杭电
2043
1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int m,c,i; 6 char s[51]; 7 while(scanf("%d",&m)!=EOF) 8 { 9 while(m--) 1
·
2015-11-01 15:29
杭电
杭电
2044
1 #include <stdio.h> 2 int main() 3 { 4 int i, j, n; 5 __int64 d[51] = {1, 1, 2,}; 6 for (i = 3; i < 51; i++) 7 d[i] = d[i-1] + d[i-2]; 8 scanf("%d
·
2015-11-01 15:29
杭电
杭电
2042
1 #include<stdio.h> 2 int main() 3 { 4 int i,n,m; 5 while(scanf("%d",&n)!=EOF) 6 { 7 while(n--) 8 { 9 scanf("%d",
·
2015-11-01 15:28
杭电
杭电
2041
#include<stdio.h> int main () { int n,m,i,a[41]; while(scanf("%d",&n)!=EOF&&n>0) { a[0]=0; a[1]=0; a[2]=1; a[3]=2; for(i=4;i<=40;i++) a[i]=a[i-1]+a[
·
2015-11-01 15:27
杭电
杭电
2040
#include<stdio.h> int main() { int m,x,y,i,j; while(scanf("%d",&m)!=EOF) { while(m--) { int sum1=0,sum2=0; scanf("%d %d&
·
2015-11-01 15:26
杭电
杭电
1282-回文
回文数猜想 ProblemDescription一个正整数,如果从左向右读(称之为正序数)和从右向左读(称之为倒序数)是一样的,这样的数就叫回文数。任取一个正整数,如果不是回文数,将该数与他的倒序数相加,若其和不是回文数,则重复上述步骤,一直到获得回文数为止。例如:68变成154(68+86),再变成605(154+451),最后变成1111(605+506),而1111是回文数。于是有数学家提出
qq_30638831
·
2015-11-01 14:00
杭电
杭电
1266--数的倒叙
ReverseNumber ProblemDescriptionWelcometo2006’4computercollegeprogrammingcontest!Specially,Igivemybestregardstoallfreshmen!YouarethefutureofHDUACM!Andnow,ImusttellyouthatACMproblemsarealwaysnotsoeasy,
qq_30638831
·
2015-11-01 14:00
ACM
杭电
HDU
2546
饭卡(带限制的01背包变形)
思路:有几个解法,如下 1)先拿出5块买最贵的菜,剩下的菜再进行01背包。如何证明正确性?设最贵的菜价e,次贵的菜价s,设减去5后的余额为x,会不会产生这样的情况,假设用5元买了e,余额最多能买到x-2钱的菜,那么共买到是x-2+e。而如果挑出s,并且有其他菜价组合加上e等于x呢?不知怎么证明。但是能AC,没有实现。 2)将余额-5作为背包容量,进行01背包,dp时记录下每种背
·
2015-11-01 13:11
HDU
train problem I (栈水题)
杭电
1002http://acm.hdu.edu.cn/showproblem.php?
·
2015-11-01 13:43
in
HDU/
杭电
2013多校第三场解题报告
今天悲剧了,各种被虐啊,还是太年轻了 Crime 这道题目给的时间好长,第一次就想到了暴力,结果华丽丽的TLE了。 后来找了一下,发现前24个是1, 2, 6, 12, 72, 72, 864, 1728, 13824, 22032, 555264, 476928, 17625600, 29599488, 321115392, 805146624, 460970
·
2015-11-01 13:13
HDU
pku2593--Max Sequence
与
杭电
的max sum plus plus相同。
·
2015-11-01 13:01
sequence
杭电
1114--完全背包
Piggy-Bank ProblemDescriptionBeforeACMcandoanything,abudgetmustbepreparedandthenecessaryfinancialsupportobtained.ThemainincomeforthisactioncomesfromIrreversiblyBoundMoney(IBM).Theideabehindissimple.Wh
qq_30638831
·
2015-11-01 12:00
杭电
杭电
2056Rectangles(未解决)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2056 该题Output Limit Exceeded,可能是考虑情况太少了! 下面的代码Output Limit Exceeded了 View Code #include <cstdlib> #include <iostream> #incl
·
2015-11-01 12:17
杭电
HDUOJ
2546
饭卡
Original ID:
2546
64-bit integer IO format: %I64d Java class
·
2015-11-01 11:39
HDU
并查集详解
来看一个实例,
杭电
1232畅通工程 首先在地
·
2015-11-01 10:05
并查集
杭电
2602---01背包
骨收集器 http://acm.hdu.edu.cn/showproblem.php?pid=2602问题描述许多年前,在泰迪的家乡有一个叫“拾骨者”的人。这个人喜欢收集不同的骨头,比如狗,牛,他还去了坟墓…骨收集器有一大袋的体积V,以及访问收集有很多骨头,很明显,不同的骨骼有不同的价值和不同的体积,现在考虑到每个骨头的价值以及他的旅行,你能计算出最大的总价值骨头收集器可以得到什么?输入第一行包含
qq_30638831
·
2015-11-01 09:00
杭电
大数相加
最近没什么事,决定把
杭电
没提交的题一道道的做过去......= = A + B Problem II 简单的大树相加的题目,以前一直觉得感觉大数相加好麻烦,都没好好的做一下,认真去写还是觉得比较简单
·
2015-10-31 19:04
深搜基础题目
杭电
HDU 1241
HDU 1241 是深搜算法的入门题目,递归实现。 原题目传送门: http://acm.hdu.edu.cn/showproblem.php?pid=1241 代码仅供参考,c++实现: #include <iostream> using namespace std; char land[150][150]; int p,q; void dfs(
·
2015-10-31 19:54
杭电 hdu
杭电
acm 1001
#include<cstdio> int main() { int n; while(scanf("%d",&n)!=EOF) { if(n%2==0) printf("%d\n\n",n/2*(n+1)); else printf(
·
2015-10-31 19:06
ACM
杭电
acm2036改革春风吹满地
改革春风吹满地 http://acm.hdu.edu.cn/showproblem.php?pid=2036 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6885 Accepted Submission(s): 3417 Probl
·
2015-10-31 18:15
ACM
杭电
acm2028 Lowest Common Multiple Plus
Lowest Common Multiple Plus http://acm.hdu.edu.cn/showproblem.php?pid=2028 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s)
·
2015-10-31 18:15
ACM
杭电
acm2032杨辉三角
杨辉三角 http://acm.hdu.edu.cn/showproblem.php?pid=2032 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13200 &nb
·
2015-10-31 18:14
ACM
杭电
acm2034 人见人爱A-B
人见人爱A-B http://acm.hdu.edu.cn/showproblem.php?pid=2034 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 16919
·
2015-10-31 18:13
ACM
杭电
acm2030汉字统计
汉字统计 http://acm.hdu.edu.cn/showproblem.php?pid=2030 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 8127  
·
2015-10-31 18:12
ACM
杭电
acm2019数列有序!
数列有序! http://acm.hdu.edu.cn/showproblem.php?pid=2019 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 16525 &nb
·
2015-10-31 18:11
ACM
杭电
acm2023求平均成绩
求平均成绩 http://acm.hdu.edu.cn/showproblem.php?pid=2023 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 23076 &n
·
2015-10-31 18:11
ACM
杭电
acm2024—C语言合法标识符
C语言合法标识符 http://acm.hdu.edu.cn/showproblem.php?pid=2024 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 12090
·
2015-10-31 18:10
ACM
杭电
acm2018母牛的故事
母牛的故事 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 15516 Accepted Submission(s): 7471 Proble
·
2015-10-31 18:09
ACM
杭电
acm2015偶数求和
偶数求和 http://acm.hdu.edu.cn/showproblem.php?pid=2015 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 16218 &nbs
·
2015-10-31 18:08
ACM
杭电
acm2012素数判定
素数判定 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 25001 Accepted Submission(s): 8429http://acm.
·
2015-10-31 18:06
2012
上一页
75
76
77
78
79
80
81
82
下一页
按字母分类:
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
其他