PAT甲级 模拟题_C++题解
模拟题
PAT (Advanced Level) Practice 模拟题
目录
- 1008 Elevator (20)
- 1042 Shuffling Machine (20)
- 1046 Shortest Distance (20)
- 1051 Pop Sequence (25)
- 1117 Eddington Number (25)
- 1128 N Queens Puzzle (20)
1008 Elevator (20)
#include<cstdio>
int main()
{
int N;
scanf("%d",&N);
int currentfloor = 0;
int nextfloor;
int time = 5 * N;
for (int i = 0; i < N; i++){
scanf("%d", &nextfloor);
if (nextfloor > currentfloor) time += 6 * (nextfloor - currentfloor);
if (nextfloor < currentfloor) time += 4 * (currentfloor - nextfloor);
currentfloor = nextfloor;
}
printf("%d", time);
}
1042 Shuffling Machine (20)
#include<iostream>
#include<string>
using namespace std;
int main()
{
string oldcards[54];
string newcards[54];
for (int i = 0; i < 54; i++){
if (i < 13){
oldcards[i] = "S";
oldcards[i].append(to_string(i+1));
} else if (i < 26){
oldcards[i] = "H";
oldcards[i].append(to_string(i+1-13));
} else if (i < 39){
oldcards[i] = "C";
oldcards[i].append(to_string(i+1-26));
} else if (i < 52){
oldcards[i] = "D";
oldcards[i].append(to_string(i+1-39));
} else {
oldcards[i] = "J";
oldcards[i].append(to_string(i+1-52));
}
}
int n;
cin >> n;
int order[54];
for (int i = 0; i < 54; i++) cin >> order[i];
for (int k = 0; k < n; k++){
for (int i = 0; i < 54; i++)
newcards[order[i]-1] = oldcards[i];
for (int i = 0; i < 54; i++)
oldcards[i] = newcards[i];
}
cout << oldcards[0];
for (int i = 1; i < 54; i++){
cout << " " << oldcards[i];
}
}
1046 Shortest Distance (20)
题目思路
- 所有结点连起来会形成一个环形,每次输入都重新加一遍距离会超时,即使记录sum每次只算一侧也会超时。
- 用dis[i]存储第1个结点到第i个结点的下一个结点的距离,sum保存整个路径一圈的总和值。
- 求得结果就是dis[right – 1] – dis[left – 1]和 sum – dis[right – 1] – dis[left – 1]中较小的那一个
- 注意:输入两个数没有顺序规定,如果左大右小需要交换
- 交换可使用swap函数,许多stl都实现了这一函数,可以用
#include<cstdio>
#include<algorithm>
using namespace std;
int main()
{
int sum = 0, N, M, a, b, temp, d;
scanf("%d",&N);
int distance[N+1] = {0};
for (int i = 1; i <= N; i++){
scanf("%d", &temp);
sum += temp;
distance[i] = sum;
}
scanf("%d", &M);
for (int i = 0; i < M; i++){
scanf("%d%d", &a, &b);
if (a > b) swap(a, b);
d = distance[b-1] - distance[a-1];
printf("%d\n", min(d, sum-d));
}
return 0;
}
1051 Pop Sequence (25)
栈模拟
- 不管是否已经判断出可不可能,要先把输入的序列接收进来。所以开一个数组先用一趟循环接受本次所有输入。
- 按顺序1~n把数字进栈,每进入一个数字,判断有没有超过最大范围
- 超过了说明到此压栈弹栈操作使得栈内元素大于规定容量,break。
- 如果没超过,检查是否需要弹出
- 压栈循环外设置变量 current 记录检查到输入序列的第几个。
- 每次将栈顶元素与输入序列检查到的对应位置是否相等,while相等则一直弹出且current后移。
- 若栈顶元素与序列不符或栈已经弹空,则继续压栈新数字。
- 注意:在while条件中要把!pop.empty()放在&&前,即先检查栈是否为空,否则在栈空时访问pop.top()是非法行为
- 如果压栈弹栈操作始终使得栈容不超过规定值,应当会检查到输入序列的最后,若current没有到达n+1,说明有元素没有被检查到,栈未被弹空,应输出NO,反之输出YES
#include<cstdio>
#include<stack>
using namespace std;
int main()
{
int m, n, k;
scanf("%d%d%d", &m, &n, &k);
for (int i = 0; i < k; i++){
int seq[n+1];
stack<int> pop;
for (int j = 1; j < n+1; j++) scanf("%d", seq+j);
int current = 1;
for (int j = 1; j < n+1; j++){
pop.push(j);
if (pop.size() > m) break;
while (!pop.empty() && pop.top() == seq[current]){
pop.pop();
current++;
}
}
if (current < n+1) printf("NO\n");
else printf("YES\n");
}
return 0;
}
1117 Eddington Number (25)
题目思路
- 在数组中存储n天的公里数,从大到小排序
- i+1 表示了第几天骑车,那么满足
dis[i] > i + 1的最大 i 即为所求
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int n, i;
scanf("%d", &n);
int dis[n];
for (i = 0; i < n; i++) scanf("%d", &dis[i]);
sort(dis, dis+n, greater<int>());
for (i = 0; i < n; i++)
if (dis[i] <= i + 1) break;
printf("%d\n", i);
return 0;
}
1128 N Queens Puzzle (20)
题目思路
- 不管是否已经判断出是否为解,要先把输入的序列接收进来。所以开一个数组先用一趟循环接受本次所有输入。
- 对于第j个数字,判断其前输入的数字中是否有在同一行的 seq[j] == seq[k] 和在斜对角线上的 abs(seq[j]-seq[k]) == abs(j-k)
- 不满足改变标记变量break离开检查循环,根据标记变量进行对应输出
- 简化代码:若不满足标记变量不继续进行循环,可将标记变量写入for循环条件。
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
int K, n;
scanf("%d", &K);
for (int i = 0; i < K; i++){
bool issolution = true;
scanf("%d", &n);
int seq[n+1] = {0};
for (int j = 1; j < n+1; j++) scanf("%d", seq+j);
for (int j = 1; j < n+1 && issolution; j++){
for (int k = 1; k < j; k++){
if (seq[j] == seq[k] || abs(seq[j]-seq[k]) == abs(j-k)){
issolution = false;
break;
}
}
}
printf("%s", issolution ? "YES\n" : "NO\n");
}
return 0;
}
PAT甲级 模拟题_C++题解的更多相关文章
- PAT甲级 排序题_C++题解
排序题 PAT (Advanced Level) Practice 排序题 目录 <算法笔记> 6.9.6 sort()用法 <算法笔记> 4.1 排序题步骤 1012 The ...
- PAT甲级 链表题_C++题解
链表处理 PAT (Advanced Level) Practice 链表题 目录 <算法笔记> 重点摘要:静态链表 1032 Sharing (25) 1052 Linked List ...
- PAT甲级真题及训练集
正好这个"水水"的C4来了 先把甲级刷完吧.(开玩笑-2017.3.26) 这是一套"伪题解". wacao 刚才登出账号测试一下代码链接,原来是看不到..有空 ...
- 1080 Graduate Admission——PAT甲级真题
1080 Graduate Admission--PAT甲级练习题 It is said that in 2013, there were about 100 graduate schools rea ...
- PAT甲级2019冬季考试题解
A Good In C纯模拟题,用string数组读入数据,注意单词数量的判断 #include<bits/stdc++.h> using namespace std; ; ][]; in ...
- PAT甲级 散列题_C++题解
散列 PAT (Advanced Level) Practice 散列题 目录 <算法笔记> 重点摘要 1002 A+B for Polynomials (25) 1009 Product ...
- PAT甲级 Dijkstra 相关题_C++题解
Dijkstra PAT (Advanced Level) Practice Dijkstra 相关题 目录 <算法笔记>重点摘要 1003 Emergency (25) <算法笔记 ...
- PAT甲级 进制转换题_C++题解
进制转换题 PAT (Advanced Level) Practice 进制转换题 目录 <算法笔记> 重点摘要 1015 Reversible Primes (20) 1019 Gene ...
- PAT甲级 二叉树 相关题_C++题解
二叉树 PAT (Advanced Level) Practice 二叉树 相关题 目录 <算法笔记> 重点摘要 1020 Tree Traversals (25) 1086 Tree T ...
随机推荐
- 树莓派4硬件---GPIO篇
树莓派拿到手已经两个多月了,其实从最开始的期待安装好ROS,到前几天完成了ROS的源码编译安装,对linux的调教也时花了些时间的.现在终于想起来,树莓派上还有GPIO,还没有用过了.说干就干,开始. ...
- java读取excel文件数据导入mysql数据库
这是我来公司的第二周的一个小学习任务,下面是实现过程: 1.建立maven工程(方便管理jar包) 在pom.xml导入 jxl,mysql-connector 依赖 可以在maven仓库搜索 2.建 ...
- Sollin算法的C++实现 BY gremount
Sollin算法可以看作是Kruskal算法和Prim算法的综合 基本思想是: 1. 从所有节点都孤立的森林开始,通过合并树来得到最小生成树 2. 每次合并树的边都是用最小权重的割边 程序具体实现思路 ...
- nginx反向代理部署vue项目(history模式)的方法
前言: 根据标题我们要区分出两个信息 1. history 模式部署 ( vue的路由模式如果使用history,刷新会报404错误.) 2. Nginx 做反向代理 问题1思考: vue-route ...
- iOS12 中的后台下载与上传
严格意义上来说,iOS并不能像Android一样,真的在后台开启一个下载Service,一直下载.但是它可以进行在系统允许范围内的后台上传和下载. 当使用 NSURLSessionConfigurat ...
- hwclock设置时间的调用过程是怎样的?
调用过程如下: hwclock -w -> xioctl(RTC_SET_TIME); -> rtc_dev_ioctl() -> rtc_set_time()
- osg 添加 fbx插件 osg中编译fbx
使用osg加载fbx模型,需要自己编译fbx插件,编译流程与插件使用案例如下 代码地址:https://github.com/shelltdf/osgFBX CMake Error: The foll ...
- 阶段5 3.微服务项目【学成在线】_day16 Spring Security Oauth2_20-认证接口开发-接口测试
测试接口 因为继承了spring security会拦截这个请求,我们需要写代码 让他对这个认证接口放行 查看代码发现之前已经写过放行的代码了 发现是路径前面少了auth 加断点,测试.申请令牌 r ...
- (九)UML之活动图
一.概念 二. 在Rational rose 中画活动图 2.1 创建Activity Diagram 2.2 画图
- [Vue warn]: Do not use built-in or reserved HTML elements as component id: content
错误如下: 报错原因: 不能使用内建标签,组件不能和html标签重复. 解决办法: 把name改成mContent解决.