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
浙大PAT
A题进行时--
浙大PAT
1001-1010
pat链接:http://pat.zju.edu.cn10011#include 2intmain(){ 3inta,b; 4intc; 5while(scanf("%d%d",&a,&b)!=EOF){ 6c=a+b; 7if(c=1000000) 12printf("%d,%03d,%03d\n",c/1000000,(c/1000)%1000,c%1000); 13elsei
·
2013-09-24 00:00
pat
浙大PAT
(Advanced Level) Practise 1008 Elevator (20)
/*本题是道水题,直接考察前后两个数字的关系解题,代码如下:*/#includeusingnamespacestd;intmain(){intn;while(cin>>n){intnum[10000]={0};intt=0;for(inti=1;i>num[i];if(num[i]>num[i-1])//上楼t=t+(num[i]-num[i-1])*6;elseif(num[i]
struggler_1990
·
2013-06-14 13:19
c++学习
浙大PAT
c++练习
浙大PAT
浙大PAT
_1038:Recover the Smallest Number 解题报告
题目:Givenacollectionofnumbersegments,youaresupposedtorecoverthesmallestnumberfromthem.Forexample,given{32,321,3214,0229,87},wecanrecovermanynumberssuchlike32-321-3214-0229-87or0229-32-87-321-3214withre
ljiabin
·
2013-03-04 21:00
recover
the
浙大PAT
Smallest
浙大PAT
_1044:Shopping in Mars 解题报告
题目大意:给出长度为n的一个整数序列,找出其中所有和为m的子序列(连续的),如果没有任何子序列的和等于m,那么找出大于m的最小和。如长度为8的序列3,2,1,5,4,6,8,7,找出和为15的子序列有三个:1~5,4~6,7~8。这道题思路并不难,一般都能想到通过遍历来解决,但是如果不注意细节是很难拿到满分的。以下是大家通常能够写出的解决方法:#include usingnamespacestd;
ljiabin
·
2013-03-04 15:00
in
pat
shopping
MARS
浙大机试
浙大pat
1017
#include #include #include #include #include usingnamespacestd; //说明:这道题目只要是17:00之前到的都会被处理,通俗点就是银行17:00之后不让进了 intN,K; structTask{ intarrive_time; intserve_time; intstart_serve_time; intcomplete_time;
chen895281773
·
2013-02-28 21:00
浙大PAT
1041题 1041. Be Unique
#include intrcd[10008]; intnum[100008]; intmain(){ inti,j,n; for(i=0;i<=10000;i++){ rcd[i]=0; } scanf("%d",&n); for(i=0;i
Sup_Heaven
·
2012-12-30 15:00
浙大PAT
1040题 1040. Longest Symmetric String
#include #include intmain(){ inti,j,k,maxs=0,cnt; charstr[1008]; gets(str); intlen=strlen(str); for(i=0;i=0&&kmaxs)maxs=cnt; } for(i=0;i=0&&kmaxs)maxs=cnt; } printf("%d\n",maxs); return0;
Sup_Heaven
·
2012-12-30 15:00
浙大PAT
1038题 1038. Recover the Smallest Number
快排飘过,代码如下:#include #include #include intcmp(constvoid*m,constvoid*n){ char*a=(char*)m; char*b=(char*)n; chartmpa[20],tmpb[20]; strcpy(tmpa,a); strcpy(tmpb,b); strcat(tmpa,b); strcat(tmpb,a); returnstr
Sup_Heaven
·
2012-12-30 15:00
浙大PAT
1036题 1036. Boys vs Girls
#include #include structStu{ charname[12]; charsex[2]; charid[12]; intgrade; }stu,higF,lowM; intmain(){ inti,j,n; higF.grade=-1;lowM.grade=101; scanf("%d",&n); for(i=0;ihigF.grade)higF=stu
Sup_Heaven
·
2012-12-29 21:00
浙大PAT
1031题 1031. Hello World for U
模拟题,代码很乱:#include #include structChoice{ intx; inty; intyes; }cho[2]; intmain(){ inti,j,n,len; charstr[90],rst[100][100]; introw,col; scanf("%s",str); len=strlen(str); cho[0].x=len/3; ch
Sup_Heaven
·
2012-12-29 21:00
浙大PAT
1027题 1027. Colors in Mars
水题,代码写的有点戳#include intmain(){ intr,g,b,cnt; charrst[6]={'0','0','0','0','0','0'}; scanf("%d%d%d",&r,&g,&b); if(r%13<10)rst[1]='0'+r%13; elserst[1]='A'+r%13-10; r=r/13; if(r%13<10)rst[0]='0'+
Sup_Heaven
·
2012-12-29 21:00
浙大PAT
1028题 1028. List Sorting
此题用了Qsort模板,200ms时限,用C++输入输出时超时,改用C,90ms过了#include #include #include typedefstruct{ charid[10]; charname[10]; intscore; }Student; Studentstu[100005]; intn,c; intcmp(constvoid*atmp,constvoid*
Sup_Heaven
·
2012-12-29 21:00
pat的一道无语题
pat主页http://pat.zju.edu.cn,1047题,主要是个模拟的选课题目,大家有兴趣可以看下,顺便还是为
浙大pat
考试打个小广告吧,这样比赛的感
dnf1990
·
2012-12-18 23:57
算法
上一页
1
2
3
下一页
按字母分类:
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
其他