模拟题

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++题解的更多相关文章

  1. PAT甲级 排序题_C++题解

    排序题 PAT (Advanced Level) Practice 排序题 目录 <算法笔记> 6.9.6 sort()用法 <算法笔记> 4.1 排序题步骤 1012 The ...

  2. PAT甲级 链表题_C++题解

    链表处理 PAT (Advanced Level) Practice 链表题 目录 <算法笔记> 重点摘要:静态链表 1032 Sharing (25) 1052 Linked List ...

  3. PAT甲级真题及训练集

    正好这个"水水"的C4来了 先把甲级刷完吧.(开玩笑-2017.3.26) 这是一套"伪题解". wacao 刚才登出账号测试一下代码链接,原来是看不到..有空 ...

  4. 1080 Graduate Admission——PAT甲级真题

    1080 Graduate Admission--PAT甲级练习题 It is said that in 2013, there were about 100 graduate schools rea ...

  5. PAT甲级2019冬季考试题解

    A Good In C纯模拟题,用string数组读入数据,注意单词数量的判断 #include<bits/stdc++.h> using namespace std; ; ][]; in ...

  6. PAT甲级 散列题_C++题解

    散列 PAT (Advanced Level) Practice 散列题 目录 <算法笔记> 重点摘要 1002 A+B for Polynomials (25) 1009 Product ...

  7. PAT甲级 Dijkstra 相关题_C++题解

    Dijkstra PAT (Advanced Level) Practice Dijkstra 相关题 目录 <算法笔记>重点摘要 1003 Emergency (25) <算法笔记 ...

  8. PAT甲级 进制转换题_C++题解

    进制转换题 PAT (Advanced Level) Practice 进制转换题 目录 <算法笔记> 重点摘要 1015 Reversible Primes (20) 1019 Gene ...

  9. PAT甲级 二叉树 相关题_C++题解

    二叉树 PAT (Advanced Level) Practice 二叉树 相关题 目录 <算法笔记> 重点摘要 1020 Tree Traversals (25) 1086 Tree T ...

随机推荐

  1. 不用中间变量交换a和b的值?

    a = b = a = a+b b = a-b a = a-b print(a,b) a = b = a = a^b b = b^a a = a^b print(a,b) a = b = a,b = ...

  2. Hadoop Aggregate Resource Allocation解释

    1.在hadoop里面运行程序的时候,查看某个任务的具体信息如下: [hadoop@master monitor]$ yarn application -list 如上图,这里面的Aggregate ...

  3. zoom:1的常见作用

    zoom是IE专用属性,firefox等是不支持的.它的本来作用是设置或检索对象的缩放比例,但这作用几乎用不到. 可以让网页实现IE7中的放大缩小功能.比如你想让你的网页缩小为原来的一半,那么就在bo ...

  4. Spring学习随笔(1):为什么要使用Spring

    寒冷的冬天,一周两节课,掏出买了一年没翻过的<Spring实战>. 刚刚接触spring的我对它还不是很熟悉,对各种知识的认知也比较浅薄,但我会学习的过程通过随笔记录下来,监督自己学下去. ...

  5. IDEA的版本控制

    参考:https://blog.csdn.net/qq_35246620/article/details/70792861 1.从远程仓库下载项目 2.提交项目到远程仓库

  6. JavaWeb基础知识

    一.WEB基本概念 1.1.WEB开发的相关知识 WEB,在英语中web即表示网页的意思,它用于表示Internet主机上供外界访问的资源. Internet上供外界访问的Web资源分为: 静态web ...

  7. Java工作笔记:工作中使用JNA调用C++库的一些细节(转载)

    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明.本文链接:https://blog.csdn.net/zjutzmh/article/detai ...

  8. OneDrive

    OneDrive https://onedrive.live.com

  9. 【JavaScript】使用定时器实现Js的延期执行或重复执行setTimeout,setInterval

    使用定时器实现JavaScript的延期执行或重复执行 window对象提供了两个方法来实现定时器的效果,分别是window.setTimeout()和window.setInterval.其中前者可 ...

  10. OpenStack社区中的GO语言之争

    1 背景介绍 Swift之前几乎所有的代码都是用Python实现的,但是性能一直不理想, 社区为了解决性能问题,尝试过很多方法,后来发现用Golang语言进行一部分代码重写, 性能得到了一定的提升,社 ...