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甲级乙级
失望的六月月赛,降到了
乙级
老家,防守水平有点提升。
上个月月赛人品大爆发,这个月都还债了,最终12轮只拿了110.49VP,保级及格线是115.89VP,倒数第三轮后还是有机会的,只是叫牌亏得太多(不能归结为运气)图片发自App没有打出特别多的好牌,感觉80%的问题是叫牌。下面一副防守,倒是认真思考后,欺骗了一下小新。图片发自App北家首攻方块2,明手Q拿住,看看了几本没希望,最多将牌,红桃A,还有草花A拿一墩。不过发现小新吊将一轮后就转攻草花给对
打牌的地鼠
·
2023-08-13 17:02
第二章—少年与道人
一个
乙级
规模的仓库前,挂着风驰二字的。卫云向守门人,出示了白虎区腰牌便走了进去,那只大黑狗乖巧的趴在街道外的阴凉处,眯上了眼睛。卫云在标着取递处的木台上,把一件件早已分拣好的货物装进自己的大竹篓里。
白云的边
·
2023-08-12 16:41
成绩排名 (20)-PAT
乙级
真题
每个PAT考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们只能拿着领到的试机座位号码求助于你,从后台查出他们的考试座位号码。输入格式:输入第一行给出一个正整数N(usingnamespacestd;structSt
swag_9e40
·
2023-08-11 14:59
5月月赛总结-虎头蛇尾
本月新睿月赛,本人有两个小号出征
乙级
,本号继续混迹于丙级。
刘神粉丝
·
2023-08-11 04:57
力扣刷题|二分查找入门(Java)
目录写在前面704.二分查找278.第一个错误的版本写在前面刷了四五十道pat
乙级
题,只是博客还没来得及更新。准备入门一点力扣的题了。做了第1题-两数之和,发现它和pat做题的思维实在不太一样。
一勺黑猫
·
2023-08-09 05:51
力扣LeetCode刷题
leetcode
java
1002 A+B for Polynomials (
PAT甲级
)
#includeconstintmaxN=1001;intK,n,cnt;doublean;doublecoef[maxN];intmain(){scanf("%d",&K);cnt=0;for(inti=0;i=0;--i){if(coef[i]!=0.0){printf("%d%.1f",i,coef[i]);}}return0;}题目如下:Thistime,youaresupposedtof
天天AZ
·
2023-08-08 18:10
PAT甲级
算法
pat考试
1006 Sign In and Sign Out (
PAT甲级
)
一开始很自然地想到了用sort函数,如下:#include#include#includestructstu{charid[17];intsignIn;intsignOut;};intM,hh,mm,ss;std::vectorvec;boolcmp1(conststu&a,conststu&b){returna.signInb.signOut;}intmain(){scanf("%d",&M);
天天AZ
·
2023-08-08 18:09
PAT甲级
pat考试
1007 Maximum Subsequence Sum (
PAT甲级
)
惭愧,知道该用DP做,但是又翻了参考书才想起来。dp[i]表示以i项为结尾的最大子列。#include#includeintK,maxx,u,pu,pv;std::vectorvec,dp;intmain(){scanf("%d",&K);vec.resize(K);dp.resize(K);maxx=-1;for(inti=0;imaxx){maxx=dp[i];pu=u;pv=i;}}if(m
天天AZ
·
2023-08-08 18:39
PAT甲级
算法
动态规划
图论
pat考试
1004 Counting Leaves (
PAT甲级
)
#include#includeconstintmaxN=100;intN,M,id,K,level,p;intnbr[maxN];std::vectorvec[maxN];voiddfs(intk){if(vec[k].empty()){nbr[level]++;return;}level++;for(inti=0;i
天天AZ
·
2023-08-08 18:37
PAT甲级
算法
深度优先
图论
pat考试
Product of Polynomials (25)-
PAT甲级
真题
Thistime,youaresupposedtofindA*BwhereAandBaretwopolynomials.InputSpecification:Eachinputfilecontainsonetestcase.Eachcaseoccupies2lines,andeachlinecontainstheinformationofapolynomial:KN1aN1N2aN2…NKaNK,
柳婼
·
2023-08-07 15:04
PAT
1011 World Cup Betting (
PAT甲级
)
#includecharch[4]="WTL";intpivot;floatt,maxx,ans;intmain(){ans=1;for(inti=0;imaxx){pivot=j;maxx=t;}}ans*=maxx;printf("%c",ch[pivot]);}printf("%.02f",(ans*0.65-1)*2);return0;}题目如下:Withthe2010FIFAWorldC
天天AZ
·
2023-08-07 15:04
PAT甲级
算法
数据结构
pat考试
1013 Battle Over Cities (
PAT甲级
)
也可以在每次计算时,直接把visited[lost]标记为true。#include#include#includeconstintmaxN=1000;intN,M,K,u,v,lost,cnt;std::vectoradj[maxN];boolvisited[maxN];voiddfs(inta){visited[a]=true;for(inti=0;i
天天AZ
·
2023-08-07 15:34
PAT甲级
深度优先
算法
图论
pat考试
1012 The Best Rank (
PAT甲级
)
#include#include#include#includeconstintINF=99999999;charch[5]="ACME";intN,M,id,query,pivot,tmp;std::mapidMp;std::maprank[4];std::vectorcp;std::vectorvec[4];boolcmp(constint&a,constint&b){returna>b;}i
天天AZ
·
2023-08-07 15:34
PAT甲级
算法
c++
pat考试
1009 Product of Polynomials (
PAT甲级
)
柳婼解法如下:1009.ProductofPolynomials(25)-
PAT甲级
真题_柳婼的博客-CSDN博客我的代码如下:#include#includeconstintmaxCoef=2001;
天天AZ
·
2023-08-07 15:33
PAT甲级
算法
pat考试
[PAT
乙级
] 1029 旧键盘 C++实现
题目描述:旧键盘上坏了几个键,于是在敲一段文字的时候,对应的字符就不会出现。现在给出应该输入的一段文字、以及实际被输入的文字,请你列出肯定坏掉的那些键。输入格式:输入在2行中分别给出应该输入的文字、以及实际被输入的文字。每段文字是不超过80个字符的串,由字母A-Z(包括大、小写)、数字0-9、以及下划线_(代表空格)组成。题目保证2个字符串均非空。输出格式:按照发现顺序,在一行中输出坏掉的键。其中
zhtstar
·
2023-08-07 14:58
机试刷题记录
c++
开发语言
算法
PTA
[
PAT甲级
] 1001 A+B Format [Python3]
题目描述:Calculatea+bandoutputthesuminstandardformat--thatis,thedigitsmustbeseparatedintogroupsofthreebycommas(unlesstherearelessthanfourdigits).InputSpecification:Eachinputfilecontainsonetestcase.Eachcas
zhtstar
·
2023-08-07 14:28
机试刷题记录
算法
python
pat考试
PAT甲级
1065答案(使用C语言)
题目描述GiventhreeintegersA,BandCin[−2^63,2^63],youaresupposedtotellwhetherA+B>C.InputSpecification:Thefirstlineoftheinputgivesthepositivenumberoftestcases,T(≤10).ThenTtestcasesfollow,eachconsistsofasingl
disjkstra is niu be
·
2023-08-06 15:33
PAT
Advance
level
算法
java
数据结构
c++
PAT甲级
1020答案(使用C语言)
PAT甲级
1020答案(使用C语言)题目描述:Supposethatallthekeysinabinarytreearedistinctpositiveintegers.Giventhepostorderandinordertraversalsequences
disjkstra is niu be
·
2023-08-06 15:03
PAT
Advance
level
二叉树
算法
数据结构
以游戏编程的角度看待模拟时间的算法题——以
PAT甲级
1026 Table Tennis为例
从这个角度来看,我们可以将
PAT甲级
1026TableTennis当成一个游戏看待,在游戏进行过程中,游戏玩家可能随时会让一位球
KonoHT
·
2023-08-06 10:23
游戏
算法
pat考试
PAT
c++
unity
游戏引擎
PAT甲级
1034 Head of a Gang (30分)
原题链接
PAT甲级
1034HeadofaGang(30分)题目大意假如A和B有通话,就称他们是有关系的。并且A和B之间的权值就是他们通话的时间。
Rick97
·
2023-08-05 00:45
武汉涉密系统集成资质申报的重点和难点浅析
企业想要申报涉密系统集成资质,首先要确定好申请的级别:涉密系统集成资质分甲级和
乙级
两个级别,这个一个是看公司体量,另外一个是看公司以后所承接的项目密级级别。
武汉好地科技~企证易
·
2023-08-04 16:42
武汉涉密资质认证
涉密信息系统集成资质
档案数字化加工资质
武汉涉密信息系统集成资质认证
武汉涉密资质认证申报
武汉涉密信息系统集成乙级认证
武汉涉密信息系统集成甲级认证
PAT
乙级
真题1005 || 继续(3n+1)猜想(C语言)
计算机黑科学大全继续(3n+1)猜想题目描述:卡拉兹(Callatz)猜想已经在1001中给出了描述。在这个题目里,情况稍微有些复杂。当我们验证卡拉兹猜想的时候,为了避免重复计算,可以记录下递推过程中遇到的每一个数。例如对n=3进行验证的时候,我们需要计算3、5、8、4、2、1,则当我们对n=5、8、4、2进行验证的时候,就可以直接判定卡拉兹猜想的真伪,而不需要重复计算,因为这4个数已经在验证3的
whenever5225
·
2023-07-31 11:03
PAT
乙级
真题1016 || 部分A+B(详解,C/C++示例,测试点分析)
微信公众号:计算机黑科学大全【欢迎关注微信公众号:计算机黑科学大全,对话框回复:PAT
乙级
真题】获取全部真题详解及代码示例个人博客地址:https://whenever5225.github.io部分A
whenever5225
·
2023-07-30 23:33
1019 General Palindromic Number (
PAT甲级
)
#include#include#includeintN,b;std::vectorvec,rev;intmain(){scanf("%d%d",&N,&b);while(N>0){vec.push_back(N%b);N/=b;}rev=vec;reverse(vec.begin(),vec.end());printf("%s\n",vec==rev?"Yes":"No");for(inti=0
天天AZ
·
2023-07-27 18:20
PAT甲级
算法
pat考试
1023 Have Fun with Numbers (
PAT甲级
)
#include#includestd::strings;intcarry=0;inta[10]={0};intb[10]={0};intmain(){std::cin>>s;for(inti=s.size()-1;i>=0;--i){a[s[i]-'0']++;s[i]=s[i]+s[i]-'0'+carry;carry=0;if(s[i]>'9'){s[i]-=10;carry=1;}b[s[
天天AZ
·
2023-07-27 18:50
PAT甲级
算法
c++
pat考试
1022 Digital Library (
PAT甲级
)
参考了柳婼的解法修改后的版本:#include#include#include#include#includeintN,M,id,num;std::stringtitle,author,key,pub,year,s;std::map>titleMp,authorMp,keyMp,pubMp,yearMp;voidquery(std::map>&mp,std::stringss){if(mp.fin
天天AZ
·
2023-07-27 18:50
PAT甲级
c++
pat考试
1028 List Sorting (
PAT甲级
)
#include#include#include#includestructstu{intid;std::stringname;intgrade;};intN,C;charname[9];std::vectorvec;boolcmp(conststu&a,conststu&b){if(C==1){returna.id
天天AZ
·
2023-07-27 18:49
PAT甲级
算法
数据结构
pat考试
PAT甲级
JAVA版 1003 Emergency(25 分)
1003Emergency(25分)Asanemergencyrescueteamleaderofacity,youaregivenaspecialmapofyourcountry.Themapshowsseveralscatteredcitiesconnectedbysomeroads.Amountofrescueteamsineachcityandthelengthofeachroadbetw
杨小码
·
2023-07-25 13:30
PAT甲级
1119Pre- and Post-order Traversals
题目大意根据一个二叉树的前序和后序遍历序列,判断此二叉树是否唯一,并输出此二叉树的中序遍历序列,若不唯一则随意输出一个满足前序与后序遍历序列的中序序列。思路二叉树不唯一的情况是当前序和后序遍历只包含两个元素时,此时无法确定叶子结点属于右子树还是左子树,只要在转中序序列的递归函数中判断当前递归层中序列中元素的个数是否为两个即可。原题1119Pre-andPost-orderTraversals(30
yo1ooo
·
2023-07-24 22:53
PAT
乙级
1017 A除以B (20 分)
题目本题要求计算A/B,其中A是不超过1000位的正整数,B是1位正整数。你需要输出商数Q和余数R,使得A=B×Q+R成立。输入格式输入在一行中依次给出A和B,中间以1空格分隔。输出格式在一行中依次输出Q和R,中间以1空格分隔。输入样例1234567890509876543217输出样例176366841501410934743思路分析:首先从题目给出不多于1000位的数字,就表明了只能用char
_一粒原子
·
2023-07-21 03:01
Find Coins (25)-
PAT甲级
真题(Hash散列)
Evalovestocollectcoinsfromallovertheuniverse,includingsomeotherplanetslikeMars.Onedayshevisitedauniversalshoppingmallwhichcouldacceptallkindsofcoinsaspayments.However,therewasaspecialrequirementofthep
柳婼
·
2023-07-19 18:24
PAT
1047 Student List for Course (
PAT甲级
)
#include#include#include#includeintN,K,C,t;charname[5];std::strings;std::vector>vec;intmain(){scanf("%d%d",&N,&K);vec.resize(K+1);for(inti=0;i
天天AZ
·
2023-07-19 18:23
PAT甲级
算法
c++
pat考试
1046 Shortest Distance (
PAT甲级
)
#include#include#includeintN,M,d,u,v,sum,tmp;std::vectordist;intmain(){scanf("%d",&N);sum=0;dist.push_back(0);for(inti=0;iv){std::swap(u,v);}tmp=dist[v-1]-dist[u-1];if(tmp*2>sum){tmp=sum-tmp;}printf("
天天AZ
·
2023-07-19 18:23
PAT甲级
算法
c++
pat考试
1049 Counting Ones (
PAT甲级
)
1049.CountingOnes(30)-
PAT甲级
真题(数学问题)_1049count柳婼_柳婼的博客-CSDN博客我按照她的解法重写的代码如下:#includeintN,sum,a,curr,before
天天AZ
·
2023-07-19 18:53
PAT甲级
算法
c++
pat考试
1048 Find Coins (
PAT甲级
)
还是柳婼的解法妙啊....1048.FindCoins(25)-
PAT甲级
真题(Hash散列)_1048柳婼_柳婼的博客-CSDN博客网上看到双指针的解法,觉得也很妙,自己写了一下:#include#include
天天AZ
·
2023-07-19 18:18
PAT甲级
算法
pat考试
[PAT
乙级
]1043. 输出PATest(20)
1043.输出PATest(20)原题链接给定一个长度不超过10000的、仅由英文字母构成的字符串。请将字符重新调整顺序,按“PATestPATest….”这样的顺序输出,并忽略其它字符。当然,六种字符的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按PATest的顺序打印,直到所有字符都被输出。输入格式:输入在一行中给出一个长度不超过10000的、仅由英文字母构成的非空字符串。输出格
whl_program
·
2023-07-18 19:51
PAT乙级
PAT乙级
1043
输出PATest
C++
乙级
PAT 1043. 输出PATest(20)
给定一个长度不超过10000的、仅由英文字母构成的字符串。请将字符重新调整顺序,按“PATestPATest....”这样的顺序输出,并忽略其它字符。当然,六种字符的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按PATest的顺序打印,直到所有字符都被输出。输入格式:输入在一行中给出一个长度不超过10000的、仅由英文字母构成的非空字符串。输出格式:在一行中按题目要求输出排序后的字符
前端迷悟
·
2023-07-18 19:49
PAT乙级-C语言
PAT
输出PATest(20)-PAT
乙级
真题
解题思路:用unordered_map存储每个字母出现的个数,然后按照顺序遍历输出即可#includeusingnamespacestd;intmain(){stringstr;cin>>str;unordered_mapmp;for(inti=0;i0||mp['A']>0||mp['T']>0||mp['e']>0||mp['s']>0||mp['t']>0){if(mp['P']-->0){
六弦绿漪。
·
2023-07-18 19:48
PAT乙级
哈希算法
c++
算法
输出PATest(20)-PAT
乙级
给定一个长度不超过10000的、仅由英文字母构成的字符串。请将字符重新调整顺序,按“PATestPATest….”这样的顺序输出,并忽略其它字符。当然,六种字符的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按PATest的顺序打印,直到所有字符都被输出。输入格式输入在一行中给出一个长度不超过10000的、仅由英文字母构成的非空字符串。输出格式在一行中按题目要求输出排序后的字符串。题目
newcomer1235
·
2023-07-18 19:47
pat
算法
PAT
乙级
-1043. 输出PATest(20)-详解+代码
题目:PAT
乙级
-1043.输出PATest(20)给定一个长度不超过10000的、仅由英文字母构成的字符串。
水舞残枫
·
2023-07-18 19:45
PAT乙级
PAT
编程
刷题
PAT乙级
c语言
PAT甲级
题目1056 Mice and Rice
代码:#include#include#definemaxn1010usingnamespacestd;structmouse{intweight;intrank;}mice[maxn];intmain(){intNP,NG;intRat,Group;inti,j,k,front,current,u,max;vectorSeq,temp;scanf("%d%d",&NP,&NG);for(i=0;
Mr Zhang.
·
2023-07-18 15:15
c语言
PAT甲级
1056 Mice and Rice
题解题目要表达的意思特别绕,没看翻译之前,一度怀疑自己的水平?首先给你一个随机比赛序列。然后每NG个数的人在一个小组比赛。这个小组最肥的老鼠参加下一场比赛,在这一轮(所有的小组赛比完)淘汰的赋予排名,胜利的进入下一场比赛,重复上面的操作,一直找出冠军。注意:到最后不足NG人也被视为一组就拿题目中的数据来说:608一组7105一组914一组23一组4组最多诞生4个强人。所以所有淘汰的人排名是5;然后
哦啦哦啦!
·
2023-07-18 15:44
PAT甲级
PAT甲级
-1056 Mice and Rice (25分)
点击链接
PAT甲级
-AC全解汇总题目:MiceandRiceisthenameofaprogrammingcontestinwhicheachprogrammermustwriteapieceofcodetocontrolthemovementsofamouseinagivenmap.Thegoalofeachmouseistoeatasmuchriceaspossibleinordertobec
邂逅模拟卷
·
2023-07-18 15:42
#
PAT
算法
c++
PAT甲级
:1056 Mice and Rice
题目描述:MiceandRiceisthenameofaprogrammingcontestinwhicheachprogrammermustwriteapieceofcodetocontrolthemovementsofamouseinagivenmap.ThegoalofeachmouseistoeatasmuchriceaspossibleinordertobecomeaFatMouse.F
正在黑化的KS
·
2023-07-18 15:39
PAT
python
算法
pat考试
1051 Pop Sequence (
PAT甲级
)
1051.PopSequence(25)-
PAT甲级
真题(栈模拟)_柳婼的博客-CSDN博客柳婼的解法比较直观一些。
天天AZ
·
2023-07-18 15:09
PAT甲级
算法
pat考试
1064 Complete Binary Search Tree (
PAT甲级
)
这道题柳婼的解法很巧妙,理解上稍稍抽象,也就是当中序遍历时,level[r]=inorder[t++];我按照她的思路写的代码如下:#include#include#includeintN,t;std::vectorinorder,level;voidin(intr){if(r>=N){return;}in(2*r+1);level[r]=inorder[t++];in(2*r+2);}intma
天天AZ
·
2023-07-18 15:09
PAT甲级
算法
pat考试
1054 The Dominant Color (
PAT甲级
)
#include#includeintM,N,t,half;std::mapmp;intmain(){scanf("%d%d",&M,&N);half=M*N/2;for(inti=0;ihalf){printf("%d",t);return0;}}}return0;}题目如下:Behindthescenesinthecomputer'smemory,colorisalwaystalkedabou
天天AZ
·
2023-07-18 15:09
PAT甲级
算法
pat考试
PAT甲级
1056. Mice and Rice (25)
MiceandRiceisthenameofaprogrammingcontestinwhicheachprogrammermustwriteapieceofcodetocontrolthemovementsofamouseinagivenmap.ThegoalofeachmouseistoeatasmuchriceaspossibleinordertobecomeaFatMouse.Firstt
liaotl10
·
2023-07-18 15:39
PAT甲级
PAT甲级
1056 【Mice and Rice】 (25)
补充:2018.8.19更新,哦凑再写一遍果然思路清晰了很多,代码也缩减到了47行。用一个vector数组group记录当前所有的比赛顺序,再按每ng个进行从前往后分组,将每个小组第一push到vector数组tem中,其余不是小组第一的排名就是当前tem数组的大小加1(因为有了前tem名),然后令group等于tem,继续循环,最后将仅存的一个人排名设为第一。以及ng的范围是小于1e3,np的范
gq97
·
2023-07-18 15:08
PAT
模拟
PAT
C++
模拟
1056 Mice and Rice -
PAT甲级
题目描述MiceandRiceisthenameofaprogrammingcontestinwhicheachprogrammermustwriteapieceofcodetocontrolthemovementsofamouseinagivenmap.ThegoalofeachmouseistoeatasmuchriceaspossibleinordertobecomeaFatMouse.Fi
星辰浩宇
·
2023-07-18 15:37
pat甲级
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他