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甲级
Pat甲级
题目刷题分享+算法笔记提炼 ---------------第一部分 基本数据操作与常用算法
一、算法笔记提炼·数学相关1.最大公约数+最小公倍数(只需要记住定理即可)gcd(a,b)=gcd(b,a%b);意思是:a与b的最大公约数即b与a%b的最大公约数而0与数a的最大公约数为数a,自然递归边界很容易得知intgcd(inta,intb){if(b==0){returna;}returngcd(b,a%b);}最小公倍数就较为简单,是基于最大公约数intlcm(inta,intb){i
Edgar_HW
·
2020-07-04 18:07
Pat
算法笔记提炼
2018年12月9日
PAT甲级
考试总结
从九月初考完乙级之后,至今一直在准备甲级考试。主要目的是想有这么一个成绩,可以代表自己的编程水平,一方面激励自己继续学习,另一方面也有利于找找实习。其实对成绩的期待也不是很高,有个五六十也就不错了,因为之前九月份考试认识一个计算机专业考甲级的女生,她也就是考了五十几分。另外能考个五六十,比浙大计算机专业研究生入学要求的七十几分也就少了十几分,确实是不能算很差了。但是,这次简直考得一塌糊涂。原因主要
gehulushang
·
2020-07-04 16:23
个人感想和计划
数据结构
PAT : PAT (Basic Level) Practice(中文)答案(1001 ~ 1095)(纯C编写)
考试代码已更新冬天坐火车跑去考试冻懵了,来年对战
PAT甲级
考试!目录目录题目集地址目录1001害死人不偿命的(3n+1)猜想1002写出这个数1003我要通过!
Belous
·
2020-07-04 11:30
PAT
PAT
PAT甲级
1128
1128.NQueensPuzzle(20)时间限制300ms内存限制65536kB代码长度限制16000B判题程序Standard作者CHEN,YueThe"eightqueenspuzzle"istheproblemofplacingeightchessqueensonan8×8chessboardsothatnotwoqueensthreateneachother.Thus,asolutio
strivinging
·
2020-07-02 16:04
PAT
2019年12月7日
PAT甲级
满分题解与经验总结
PAT2019冬季甲级满分代码+占坑经验分享考题体验A题题目+题解题目题解B题题目+题解题目题解C题题目+题解题目题解D题题目+题解题目题解考场体验,ide经验提高效率考题体验第一次参加PAT,秋季没报上,集中准备一个月左右,刷了115道题买了两套模拟器花了20,参考柳神题目分类拷贝到印象笔记,记录每道题坑点和每天完成数.我是倒着做的,后三道没什么问题卡住的,就是手速比较满,做完两道已经有人满人了
Bin_CHG
·
2020-07-02 16:02
PAT
入门
甲级
算法笔记学习&&
PAT甲级
解题记录
算法笔记学习记录2019.06.26float&&double推荐全部使用double,注意区分scanf("%lf",&double1);与printf("%f",double1);分清%md,%0md,%.md以及可以合用%n.mdgetchar()&&putchar()getchar可以识别换行符\n看完2.4跟着codingpage39**2019.06.27BubbleSort#incl
EucalyptLuvk
·
2020-07-02 09:34
pat
【
PAT甲级
】1034. Head of a Gang (30)(并查集)
题目链接Onewaythatthepolicefindstheheadofagangistocheckpeople'sphonecalls.IfthereisaphonecallbetweenAandB,wesaythatAandBisrelated.Theweightofarelationisdefinedtobethetotaltimelengthofallthephonecallsmadeb
feng_zhiyu
·
2020-07-01 23:31
PAT
并查集
PAT甲级
1128 N Queens Puzzle
题目链接:点击打开链接思路:经典搜索,N皇后问题。#include#include#include#includeusingnamespacestd;booljudge(intchess[],intloc){for(inti=0;i
ccDLlyy
·
2020-07-01 19:45
PAT甲级
推荐做题顺序按照19年9月4日通过率排序
试题编号通过率11130.63%11200.62%10080.59%10640.58%10990.57%10940.55%10920.54%10110.53%10830.51%11020.51%10270.50%10540.50%11270.49%10510.47%10560.47%11250.47%10200.46%11300.46%11340.46%11400.46%11550.46%1006
best335
·
2020-07-01 18:22
PAT
甲级
2020年7月
PAT甲级
满分必备刷题技巧(已完结)
最新消息:本文的三年真题归类和题解都已经完成了。考试时间通知:原定于2020年6月21日举行的PAT春季考试将推迟至7月25日13:30-16:30举办。报名截止时间相应改为7月18日17:00。这份技巧帮你一网打尽所有的要点!1分类刷题,刷出水平1.1先刷最近三年的分类真题1131到1167Q:为什么要先刷后面这36题?A:因为这才是最接近未来考题的题目,刷下来你会发现很多知识点会反复出现。另外
浒鱼鱼
·
2020-07-01 17:45
PAT甲级
PAT甲级
题目索引(题目+解析+AC代码)
emmmm,1001~1033的题解是英文的,后面的解析就都是中文的了,(当时想借此锻炼自己的英文水平但是最后发现效果不是太好而且浪费时间遂换回中文,就在这里说一下~)题目信息分值
PAT甲级
1001A+
漫浸天空的雨色
·
2020-07-01 15:47
主题索引
第一次考
PAT甲级
,95分,分享一下自己的心得体会
2019.9.8日下午13:30-15:30在西安交通大学考了
PAT甲级
,95分,考完的时候心情还是比较激动的,毕竟自己从上个学期来来回回总计三个多月,基本上把
PAT甲级
题刷完了,最后拿到了满足自己预期的成绩
MatstanLy_
·
2020-07-01 11:55
想法
如何一个月左右拿下
PAT甲级
(浙大机试)满分
说明:本经验适用于
PAT甲级
难度(包括浙大保研机试、考研复试机试)博主情况:双非,无任何ACM经历,浙大保研机试满分(
PAT甲级
难度)。
进击De小火柴
·
2020-07-01 07:45
C++算法与竞赛
PAT甲级
真题 1017 Queueing at Bank
一、题目二、还是要搞清楚思路,运用技巧注意细节!!!三、代码v1.0:#include#include#defineSTART28800#defineSTOP61200typedefstruct{intat;intpt;intst;intet;}customer;customerwait[10001];typedefstructnode{customerdata;structnode*next;}
zyl_wjl_1413
·
2020-06-30 20:01
PAT甲级真题
PAT甲级
真题 1085 Perfect Sequence (25分) C++实现(排序、双指针,注意测试点5坑)
题目Givenasequenceofpositiveintegersandanotherpositiveintegerp.ThesequenceissaidtobeaperfectsequenceifM≤m×pwhereMandmarethemaximumandminimumnumbersinthesequence,respectively.Nowgivenasequenceandaparamet
zhang35
·
2020-06-30 13:37
PAT
PAT甲级
真题 1084 Broken Keyboard (20分) C++实现(简单遍历搜索)
题目Onabrokenkeyboard,someofthekeysarewornout.Sowhenyoutypesomesentences,thecharacterscorrespondingtothosekeyswillnotappearonscreen.Nowgivenastringthatyouaresupposedtotype,andthestringthatyouactuallytyp
zhang35
·
2020-06-30 13:37
PAT
PAT甲级
-1002 A+B for Polynomials (25)(25 分)
1002A+BforPolynomials(25)(25分)Thistime,youaresupposedtofindA+BwhereAandBaretwopolynomials.InputEachinputfilecontainsonetestcase.Eachcaseoccupies2lines,andeachlinecontainstheinformationofapolynomial:KN
大奸猫
·
2020-06-30 07:44
PAT甲级
如何刷pat(想要在
pat甲级
拿80到90分)
想要在
pat甲级
拿80到90分?陈越姥姥给出的建议如下:首先有十分钟
筑梦悠然
·
2020-06-29 21:21
pat甲级
关于
pat甲级
1028运行超时的解决方法
程序的代码://13.00-13.15#include#include#include#include#includeusingnamespacestd;typedefstructnode{intid;//stringname;charname[10];intgrade;}node;nodev[100000];//vectorv;intc;boolcmp1(nodea,nodeb){if(1==c
virgilshi
·
2020-06-29 18:14
PAT甲级
1001 A+B Format (20分)(题目及测试点分析)
Calculatea+bandoutputthesuminstandardformat–thatis,thedigitsmustbeseparatedintogroupsofthreebycommas(unlesstherearelessthanfourdigits).InputSpecification:Eachinputfilecontainsonetestcase.Eachcaseconta
Fmm-PMO
·
2020-06-29 16:21
PAT甲级
Maximum Subsequence Sum (25)-
PAT甲级
真题(最大连续子序列和、动态规划dp)
01-复杂度2MaximumSubsequenceSum(25分)鉴于一系列K整数{N1,N2…Nk}。连续子序列定义为{N1,N2…Nj}其中0≤j≤k。最大子序列是连续子序列,其元素总和最大。例如,给定序列{-2,11,-4,13,-5,-2},其最大子序列是{11,-4,13},最大和为20。现在你应该找到最大的总和,以及最大子序列的第一个和最后一个数字。输入规格:每个输入文件包含一个测试用
39.5℃的风
·
2020-06-29 07:57
数据结构与算法专栏
19双非跨考浙大计算机经验贴~~
一、写在前面 先说一下个人情况吧,我是电科跨考计算机,成绩政治68分,英语75分,数学120分,专业课122分,总分385分,19年3月2日
PAT甲级
100分(可惜不能代替机试),19年3月15日机试
空白wk
·
2020-06-29 00:44
考研
浙江大学
计算机
双非
跨考
机试
Hash(哈希/散列)表中冲突处理及命中计算
引言写这篇博客的契机是在刷
pat甲级
题遇到了一道写哈希的题目,结果英文太次被欺负了。之后靠翻译读懂题目,结果被命中率给坑了,遥想起以前打比赛好像也被这个坑过,愤懑不平来写博。
weixin_34226182
·
2020-06-28 14:35
pat甲级
1152 Google Recruitment (20 分)
InJuly2004,GooglepostedonagiantbillboardalongHighway101inSiliconValley(showninthepicturebelow)forrecruitment.Thecontentissuper-simple,aURLconsistingofthefirst10-digitprimefoundinconsecutivedigitsofthe
weixin_30487317
·
2020-06-27 20:04
PAT甲级
1016 Phone Bills(排序+模拟)
1016PhoneBills(25分)Along-distancetelephonecompanychargesitscustomersbythefollowingrules:Makingalong-distancecallcostsacertainamountperminute,dependingonthetimeofdaywhenthecallismade.Whenacustomerstart
threeh20
·
2020-06-26 19:41
PAT甲级
PAT甲级
真题(1001)
PAT甲级
真题(1001)题目解析源码测试结果题目Calculatea+bandoutputthesuminstandardformat–thatis,thedigitsmustbeseparatedintogroupsofthreebycommas
今天有向小何靠近一点点吗
·
2020-06-26 18:18
我的pat刷题笔记
pat甲级
题解目录
pat甲级
题解目录注:由于本人已转向使用markdown语法创作博客,以后的题解更新将在另一篇用markdown语法创作的博客
pat甲级
题解目录中进行,本题解目录不再进行更新,请读者多多包涵,谢谢!
日沉云起
·
2020-06-26 05:39
OJ题解目录
pat甲级
2019浙大计算机机试经验帖
最前面先附上自己的
PAT甲级
解题目录https://blog.csdn.net/qq_41562704/article/details/86487262今年自己的录取很大程度占了机试的运气。
Brielleqqqqqqjie
·
2020-06-25 20:52
考研
1002 A+B for Polynomials (25 分)
最近开始刷
pat甲级
题了然后第二题就是这个刚开始遇到的问题是没读懂题目还以为.是什么特殊格式后来才发现就是小数天发现是小数就简单多了开个数组就行了但是有两个坑1.输出的时候空格问题2.要保留一位小数否则测试点
有人233
·
2020-06-25 16:29
程序设计题目
PAT甲级
1029median 参考柳神解题思路
先扔完整代码,可通过在线测试,具体迟点再写#include#includeusingnamespacestd;intmain(){intm,n;cin>>m;vectorarr1(m);for(inti=0;i>arr1[i];}cin>>n;inttotal=(m+n+1)/2;intcount=0;inti=0;for(intj=0;j>temp;while(i
lzy我就来随便逛逛
·
2020-06-25 14:07
pat
【贪心】
PAT甲级
1067
1067SortwithSwap(0,i)(25分)Givenanypermutationofthenumbers{0,1,2,...,N−1},itiseasytosorttheminincreasingorder.ButwhatifSwap(0,*)istheONLYoperationthatisallowedtouse?Forexample,tosort{4,0,2,1,3}wemayapp
努力努力再努力0.0
·
2020-06-25 12:13
PAT甲级
PAT甲级
目录
编号标题题解分类备注1001A+BFormatC++字符串处理1002A+BforPolynomialsC++中级模拟+散列多项式求和问题1003EmergencyC++图最短路径问题1004CountingLeavesC++树树的遍历问题1005SpellItRightC++字符串处理1006SignInandSignOutC++查找元素1007MaximumSubsequenceSumC++动
奇跡の山
·
2020-06-25 10:31
PAT
PAT甲级
-【题目+解答】汇总
:自认为写的特别好的代码
PAT甲级
-1001A+BFormat(20分)
PAT甲级
-1002A+BforPolynomials(25分)
PAT甲级
-1003Emergency(25分)
PAT甲级
-1004CountingLeaves
邂逅模拟卷
·
2020-06-25 08:04
PAT
PAT甲级
1004.Counting Leaves (30) 题目翻译与答案
题目来源自PAT网站https://www.patest.cn/题目描述:1004.CountingLeaves(30)Afamilyhierarchyisusuallypresentedbyapedigreetree.Yourjobistocountthosefamilymemberswhohavenochild.InputEachinputfilecontainsonetestcase.Eac
漂流瓶jz
·
2020-06-24 22:45
PAT甲级
PTA_
PAT甲级
_1087 All Roads Lead to Rome (30分)
IndeedtherearemanydifferenttouristroutesfromourcitytoRome.Youaresupposedtofindyourclientstheroutewiththeleastcostwhilegainingthemosthappiness.InputSpecification:Eachinputfilecontainsonetestcase.Foreac
dgyzmyx_
·
2020-06-24 18:15
PTA_PAT
(Advanced
Level)
Practice
PTA_
PAT甲级
_1091 Acute Stroke (30分)
Oneimportantfactortoidentifyacutestroke(急性脑卒中)isthevolumeofthestrokecore.GiventheresultsofimageanalysisinwhichthecoreregionsareidentifiedineachMRIslice,yourjobistocalculatethevolumeofthestrokecore.Inp
dgyzmyx_
·
2020-06-24 18:15
PTA_PAT
(Advanced
Level)
Practice
bfs
图论
搜索
PTA_
PAT甲级
_1034 Head of a Gang (30分)
Onewaythatthepolicefindstheheadofagangistocheckpeople’sphonecalls.IfthereisaphonecallbetweenAandB,wesaythatAandBisrelated.Theweightofarelationisdefinedtobethetotaltimelengthofallthephonecallsmadebetwe
dgyzmyx_
·
2020-06-24 18:14
PTA_PAT
(Advanced
Level)
Practice
PTA_
PAT甲级
_1072 Gas Station (30分)
Agasstationhastobebuiltatsuchalocationthattheminimumdistancebetweenthestationandanyoftheresidentialhousingisasfarawayaspossible.Howeveritmustguaranteethatallthehousesareinitsservicerange.Nowgiventhema
dgyzmyx_
·
2020-06-24 18:14
PTA_PAT
(Advanced
Level)
Practice
PTA_
PAT甲级
_1076 Forwards on Weibo (30分)
WeiboisknownastheChineseversionofTwitter.OneuseronWeibomayhavemanyfollowers,andmayfollowmanyotherusersaswell.Henceasocialnetworkisformedwithfollowersrelations.WhenausermakesapostonWeibo,allhis/herfoll
dgyzmyx_
·
2020-06-24 18:14
PTA_PAT
(Advanced
Level)
Practice
bfs
图论
PTA_
PAT甲级
_1080 Graduate Admission (30分)
Itissaidthatin2011,thereareabout100graduateschoolsreadytoproceedover40,000applicationsinZhejiangProvince.Itwouldhelpalotifyoucouldwriteaprogramtoautomatetheadmissionprocedure.Eachapplicantwillhavetopr
dgyzmyx_
·
2020-06-24 18:14
PTA_PAT
(Advanced
Level)
Practice
排序
结构体
PTA_
PAT甲级
_1018 Public Bike Management (30分)
ThereisapublicbikeserviceinHangzhouCitywhichprovidesgreatconveniencetothetouristsfromallovertheworld.Onemayrentabikeatanystationandreturnittoanyotherstationsinthecity.ThePublicBikeManagementCenter(PBM
dgyzmyx_
·
2020-06-24 18:14
PTA_PAT
(Advanced
Level)
Practice
Pat甲级
题解
初衷虽然网上有很多
Pat甲级
题解,但是本题解纯属为了记录一下自己刷题遇到的困难和解题思路,也为2019春季的甲级考试做准备。欢迎同考甲级的童靴一起交流。
徐伯莱
·
2020-06-24 11:47
Pat甲级
【
PAT甲级
】1080 Graduate Admission (30 分)
#include#include#include#include#includeusingnamespacestd;typedefstructStu{intid;intge;intgi;intgf;intsch[6];}Stu;boolcmp(Stua,Stub);boolequal(Stua,Stub);boolcmp2(inta,intb);intmain(){intn,m,k;cin>>n>
lambsnow
·
2020-06-24 02:05
PAT
柳神(柳婼)
PAT甲级
题目链接
柳神(柳婼)的CSDN博客链接这篇专栏投的转载,记录的是柳神
PAT甲级
题目的一些链接。
氷鸢鸢鸢
·
2020-06-24 01:34
汇总(推荐)
PAT甲级
题解目录
转自http://blog.csdn.net/liuchuo/article/details/52497386github源码地址:https://www.github.com/liuchuo/PATIDTitleC/C++(附分析)备注1001A+BFormat(20)查看题解字符串处理1002A+BforPolynomials(25)查看题解模拟1003Emergency(25)查看题解Dij
herbertpotter
·
2020-06-23 14:36
PAT甲级
PAT甲级
刷题笔记
PAT甲级
刷题笔记STLvectorstringcctypeset一些自带函数的用法memsetroundgetline()cstringswap树图1003Emergency1005SpellItRight1007MaximumSubsequenceSum1009ProductofPolynomials1010Radix1012TheBestRank1013BattleOverCities101
四_四
·
2020-06-23 10:24
PAT甲级
1002 A+B for Polynomials
Thistime,youaresupposedtofindA+BwhereAandBaretwopolynomials.这一次,你应该找到A+B其中A和B是两个多项式。InputSpecification:Eachinputfilecontainsonetestcase.Eachcaseoccupies2lines,andeachlinecontainstheinformationofapolyn
betty__
·
2020-06-22 17:20
PAT
PAT甲级
1001 A+B Format
1001A+BFormat(20分)Calculatea+bandoutputthesuminstandardformat--thatis,thedigitsmustbeseparatedintogroupsofthreebycommas(unlesstherearelessthanfourdigits).计算a+b并输出标准格式的和——也就是说,数字必须用逗号分隔成三组(除非少于四位数)。Inp
betty__
·
2020-06-22 17:50
PAT
PAT考试大纲/如何刷pat(想要在
pat甲级
拿80到90分)
乙级(BasicLevel)考生应具备以下基本能力:1·基本的C/C++的代码设计能力,以及相关开发环境的基本调试技巧;2·理解并掌握最基本的数据存储结构,即:数组、链表;3·理解并熟练编程实现与基本数据结构相关的基础算法,包括递归、排序、查找等;4·能够分析算法的时间复杂度、空间复杂度和算法稳定性;5·具备问题抽象和建模的初步能力,并能够用所学方法解决实际问题。甲级(AdvancedLevel)
a656418zz
·
2020-06-22 11:11
PAT_乙级
PAT甲级
题型整理
按题型整理最短路径类题目:1003Emergency(Dijkstra)1018PublicBikeManagement(Dijkstra+dfs将所有最短路径都储存在vector中)1087AllRoadsLeadtoRome(Dijkstra+dfs)1111onlineMap(2次Dijkstra+dfs)二叉搜索树类题目:1043IsItaBinarySearchTree(建树+先序后序)
水果妹妹踩前端的坑
·
2020-06-21 22:40
PAT
数据结构
算法
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
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
其他