【PAT甲级最新题解】PAT甲级2020.7月春季考试满分题解(附代码)

写在前面:这次题目虽然大多数是模拟题且不算难,但是题面其实不算友好,不少同学因为题目描述而错失满分。


A:

题意:给定一个数字串,问每一个前缀串是否是素数。

模拟题不多解释。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<stack>
#include<queue>
#include<string>
#include<iostream>using namespace std;
const int MAX = 2e5 + 6;
string s;
bool isprime(int x) {if(x < 2) return 0;for(int i = 2; i*i<=x; i++) {if(x%i == 0) return 0;}return 1;
}
int main()
{cin>>s;int len = s.length();int flag = 1;for(int i = 0; i<len; i++) {cout <<  s.substr(i) ;int x = stoi(s.substr(i));//printf("%d",x);if(isprime(x) == 1) printf(" Yes\n");else {flag = 0;printf(" No\n");}}if(flag == 1) {printf("All Prime!\n");}return 0 ;
} 

B:

题意:n个人玩牌m盘。刚开始桌子上有两张牌,每盘中依次轮每个人出牌,牌放到桌子上,每一盘中这个人不出局当且仅当这个人出的牌桌子上都没有,并且恰好为桌子上某两个牌的数值的差的绝对值。然后按要求输出每一盘出局的人以及最后是否有winner。

题面是真的坑,刚开始在输出格式这里卡了半天,好在最后AC了。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<stack>
#include<queue>
#include<string>
#include<iostream>
#include<set>
using namespace std;
const int MAX = 4e5 + 6;int a,b;
int n,m;
int val[102][1003];
int out[102];//是否出局 
vector<int> hx;//候选的数字
vector<int> vv;//每一局淘汰的人 
bool is[MAX],diff[MAX];
int main()
{cin>>a>>b;cin>>n>>m;for(int i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) {scanf("%d",&val[i][j]);}}is[a]=1;is[b]=1;diff[abs(a-b)]=1;hx.push_back(a);hx.push_back(b);int cnt_out = 0;for(int j = 1; j<=m; j++) {//每一局 vv.clear();for(int i = 1; i<=n; i++) {//每个人 if(out[i] == 1) continue;int now = val[i][j];int jixu = diff[now];if(is[now] == 1) jixu = 0;if(jixu == 1) is[now] = 1;//这里加不加if都能AC,但是题面意思并不清晰。 if(jixu == 0) {cnt_out++;out[i] = 1;vv.push_back(i);continue;}for(int k = 0; k<hx.size(); k++) {diff[abs(hx[k]-now)]=1;}hx.push_back(now);}if(vv.size() > 0) {for(int k = 0; k<vv.size(); k++) {printf("Round #%d: %d is out.\n",j,vv[k]);
//				printf(" %d",vv[k]);}//printf(" is out.\n");}if(cnt_out == n) {printf("No winner.\n");return 0;}}if(cnt_out == n) {printf("No winner.\n");return 0;}printf("Winner(s):");for(int i = 1; i<=n; i++) {if(out[i] == 0) {printf(" %d",i);}}printf("\n");return 0;
}
/*
20 12
2 2
8 4
8 200*/

C:

题意:给一张无向图,相邻点不能是相同颜色,给你m种染色方案,问你每一种是否合法。

经典的染色问题,求解是np的,但是验证解是线性的,水题。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<stack>
#include<queue>
#include<string>
#include<iostream>
#include<set>
using namespace std;
const int MAX = 4e5 + 6;
int val[MAX];
int n,r,k,m;
pair<int,int> pr[MAX];
set<int> ss;
int main()
{cin>>n>>r>>k;for(int a,b,i = 1; i<=r; i++) {scanf("%d%d",&a,&b);pr[i].first = a;pr[i].second = b;}cin>>m;for(int i = 1; i<=m; i++) {ss.clear();for(int j = 1; j<=n; j++) {scanf("%d",&val[j]);ss.insert(val[j]);}if(ss.size() > k) {printf("Error: Too many species.\n");}else if(ss.size() < k) {printf("Error: Too few species.\n");}else {int flag = 1;for(int a,b,q = 1; q<=r; q++) {a = pr[q].first;b = pr[q].second;if(val[a] == val[b]) {flag = 0;break;}}if(flag == 1) puts("Yes");else puts("No");}}}
/*
6 8 3
2 1
1 3
4 6
2 5
2 4
5 4
5 6
3 6
5
1 2 3 3 1 2
1 2 3 4 5 6
4 5 6 6 4 5
2 3 4 2 3 4
2 2 2 2 2 2
*/

D:

题意:定义了一种排序方式,让你用这种排序方式把给定的数字进行排序。

做法:拿个set维护窗口内的数就可以了,不难。

注意题面是int范围,也就是代表可以有负数。(是-1e11啊不是1e-11,Orz)

这题刚开始一直T,本来想是不是卡了log,强行让你用并查集进行区间合并,交卷还剩半小时的时候发现是自己写挂了,log是可以过的。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<stack>
#include<queue>
#include<string>
#include<iostream>
#include<set>
using namespace std;
typedef long long ll;
const int MAX = 2e5 + 6;
int n,m,ok[MAX];
ll a[MAX];
set<pair<ll,int> > ss;
set<int> ori;
set<int> cur;
vector<ll> vv; 
vector<pair<int,ll> > cc;
int f[MAX];
int getf(int v) {return f[v] == v ? v : f[v] = getf(f[v]);
}
int main()
{cin>>n>>m;for(int i = 1; i<=n; i++) scanf("%lld",a+i),f[i]=i,ori.insert(i);int cur_ans = 0;for(int times = 1; times<=n; times++) {ss.clear();vv.clear();cc.clear();pair<ll,int> last = make_pair((ll)-1e11,0);for(set<int>::iterator itt = ori.begin(); itt != ori.end(); ++itt) {int pos = *itt; if(ss.size() < m) {ss.insert(make_pair(a[pos],pos));}if(ss.size() == m) {set<pair<ll,int> >::iterator it = ss.lower_bound(last);if(it == ss.end()) {break;}else {pair<ll,int> now = *it;cc.push_back(now.second);vv.push_back(now.first);ss.erase(it);last = now;}}}set<pair<ll,int> >::iterator it = ss.lower_bound(last);for(;it != ss.end(); ++it) {pair<ll,int> now = *it;cc.push_back(make_pair(now.second,now.first));ok[now.second] = 1;vv.push_back(now.first);//ss.erase(it);last = now;			}int up = vv.size();cur_ans += up;for(int i = 0; i<up; i++) {printf("%lld%c",vv[i],i == up-1 ? '\n' : ' ');}if(cur_ans == n){break;}for(int i = 0; i<cc.size(); i++) {ori.erase(cc[i]);}} return 0;	
} 

有不懂的地方欢迎评论一起讨论~

 


另外,如果你要问我怎么发现的输出格式的问题,那么下面这张图将回答这个问题:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439361.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SharePoint PowerShell命令系列

(1) Backup-SPSite & Restore-SPSite 这两条命令可能是大家最先接触的PowerShell命令了吧, 一个是备份网站集, 另一个是还原网站集. Backup-SPSite 例子 Backup-SPSite http://site_name -Path C:\Backup\site_name.bak 参数 Force: 覆盖现有备份NoSiteLock: 设置备份…

【Processing学习】 - 公交车马路动态绘制

效果图: 汽车动态移动,云彩动态移动,小草没有找到矢量图,百度了一张先用着. float q 0; int s 0; int add 1;PImage p1;void setup() {size(800, 400);background(0, 0, 255);rect(300, 150, 300, 140, 30);//sunfill(255, 255, 0);circle(800, 0, 40);first//circle(360,…

Qt 5.14 安装,windows10系统,64位,详细步骤,非常简单!

下载地址&#xff1a;http://download.qt.io/archive/qt/5.14/5.14.2/ 直接选择windows系统或mac兄或Linux系统对应版本即可。 这里解释一下 Qt 的版本号&#xff0c;比如 5.14.2 是完整的 Qt 库版本号&#xff0c;第一个数字 5 是大版本号&#xff08;major&#xff09;&…

2023年12月16日~12月22日(自适应反馈机制下基于卷积神经网络的高清晰反射波反演算法:CNN-RWI)

标题&#xff1a;Adaptive Feedback Convolutional-Neural-Network-Based High-Resolution Reflection-Waveform Inversion 全波形反演&#xff08;FWI&#xff09;是一种非线性拟合观测地震记录从而获得高清晰速度模型的最优化算法。FWI能够通过拟合浅层初至波和反射波获得较准…

SharePoint 2016文档库所在数据库表的说明(文档库数据库)

突然被客户问一个问题&#xff0c;说数据库存在哪一个表&#xff0c;这个原本是开发的事&#xff0c;竟然文档我了&#xff0c;好吧这里记录一下&#xff0c;以便记忆给客户汇报。 SharePoint 数据库表说明&#xff1a; FeaturesTable that holds information about all the …

SharePoint 2013 RBS(Remote BLOB Storag) 安装、部署、垃圾回收

SharePoint 承担着文件管理的工作&#xff0c;默认都是将它们以BLOB的数据形式存储在内容数据库当中&#xff1b;当文件大时&#xff0c;就很容易导致数据库容量被这些BLOB数据所快速消耗&#xff0c;而且频繁地对这些大数据量的BLOB数据进行读写访问&#xff0c;很容易在SQL端…

Processing 闪烁的圆 动画效果

打开Processing,CtrlR运行. 运行效果 : class myRect {float x,y;float r,a;//banjing secai bianhua myRect(float x, float y, float r,float a) {this.x x;this.y y;this.r r;this.a a;}void chang(){this.a 0.02;} void display() {stroke(255);fill(120-120*cos(a…

用生动的例子花式解释:python类中一定需要有 __init__方法么?没有会怎样?

python 类中一定需要有 __init __方法么&#xff1f;没有的会怎样&#xff1f; 在回答这个问题之前&#xff0c;先说两个问题&#xff1a;① 面向对象编程&#xff1f; ② 什么是类&#xff1f; 面向对象&#xff0c;先上一个正式点的解释&#xff1a; “把一组数据结构和处…

Anaconda安装绘图模块altair

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple altair

MOSS/Sharepoint RBS概念以及运用

注&#xff1a;原文作者不知道是谁&#xff0c;先收藏了这篇&#xff08;若有侵权&#xff0c;请留言&#xff0c;删除&#xff09; EBS -> External Blob Storage 外部大二进制对象存储 RBS -> Remote Blob Storage 远程大二进制对象存储 这俩概念据我所知&#xff0c;…

【Python学习】 - 超详细的零基础Pandas学习(附Python数据分析与应用课本第四章实训答案)

&#xff08;博文体系参考&#xff1a;《Python数据分析与应用》课本&#xff09; 任务数据如下&#xff1a; 读入csv文件时&#xff0c;encoding必须是正确的&#xff0c;常用的编码格式有&#xff1a;UTF-8 , UTF-16 , GBK , GB2312 , GB18030等。 如果和文件的编码格式不符…

win10,配置环境变量时系统环境变量和用户环境变量的优先级

关于%%中间夹着的东西&#xff0c;比如%AppData%的路径&#xff0c;是在注册表中可以修改的&#xff0c;用户也可以自定义这种%...%&#xff0c;相当于你定义了一个路径常量&#xff0c;定义方法也是去系统的环境变量中去添加即可。 比如一般常用%JAVAHOME%这种。 参考文章&a…

sql server登录名、服务器角色、数据库用户、数据库角色、架构区别联系**

1.一个数据库用户可以对应多个架构&#xff08;架构是表容器&#xff09;。架构里面包含的是数据库表。 2.一个数据库角色有可能涉及多个架构。数据库角色对应的是权限。 3.一个用户对应一个数据库角色。 4.登录名与数据库用户在服务器级别是一对多的&#xff1b;在数据库级…

python 字典、列表、字符串 之间的相互转换

1、列表与字符串转换 列表转字符串&#xff1a; 将列表中的内容拼接成一个字符串 将列表中的值转成字符串 字符串转列表&#xff1a; 用eval转换 将字符串每个字符转成列表中的值 将字符串按分割成列表 2、列表与字典转换 列表转字典&#xff1a; 将两个列表转成字典 将嵌…

【转】aspx,ascx和ashx使用小结

做asp.net开发的对.aspx,.ascx和.ashx都不会陌生。关于它们&#xff0c;网上有很多文章介绍。“纸上得来终觉浅&#xff0c;绝知此事要躬行”&#xff0c;下面自己总结一下做个笔记。1、.aspx Web窗体设计页面。Web窗体页由两部分组成&#xff1a;视觉元素&#xff08;html、服…

【转】Azure DevOps —— Azure Board 之 长篇故事、特性、用户情景(故事)的用法应用场景

前提 我以前在之前的文章里大概介绍了 Azure Board 的基本使用&#xff0c;可以回看《Azure Board 的基本使用》。如果你想使用 Azure Board 来安排工作的话&#xff0c;请提前了解《敏捷开发》的相关知识。 作者将使用 “Agile” 作为项目的模板&#xff0c;不明白的先阅读《…

【VIJOS - P1037】搭建双塔(dp)

题干&#xff1a; 描述 2001年9月11日&#xff0c;一场突发的灾难将纽约世界贸易中心大厦夷为平地&#xff0c;Mr. F曾亲眼目睹了这次灾难。为了纪念“9?11”事件&#xff0c;Mr. F决定自己用水晶来搭建一座双塔。 Mr. F有N块水晶&#xff0c;每块水晶有一个高度&#xff0…

【POJ - 1459】Power Network(网络流最大流,建图)

题干&#xff1a; A power network consists of nodes (power stations, consumers and dispatchers) connected by power transport lines. A node u may be supplied with an amount s(u) > 0 of power, may produce an amount 0 < p(u) < p max(u) of power, may …

【转】React Vue MVC MVVM MVP

首先&#xff0c;在谈这个话题之前&#xff0c; 我们有必要了解一下库和框架的区别。 我们先来看react官网以及vue官网对他们的定位&#xff1a; react: vue: react我们不说了&#xff0c;官网上明明白白说了&#xff0c;人家是一个library&#xff0c;用于构建用户界面。 v…

【转】使用Feature导入WebPart

原文链接&#xff1a;http://www.cnblogs.com/glife/archive/2009/10/27/1590488.html 前些天在刚刚接触WebPart的时候&#xff0c;搜到了一篇《使用Feature导入WebPart》的文章&#xff0c;那个时候对Feature的了解还为零&#xff0c;所以看了是一知半解&#xff0c;等到今天…