2023 PAT exam (Advanced level) in winter Dec.12nd

  1. A-1 Fill in the Numbers
  2. A-2 PeekMax in Stack
  3. A-3 A+B with Binary Search Trees
  4. A-4 Transportation Hub

A-1 Fill in the Numbers

diagonal this word is the most import key in this question. As many people don’t know the meaning of that including me, there’re lots of wrong guessed ideas appearing. However, the question is so easy that I don’t want to say any other words about it.

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1123;int n, m;
int a[N][N];vector<int > res;int dx[] = {0, 0, -1, 1};
int dy[] = {1, -1, 0, 0};inline bool check()
{int sum = 0;for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) {bool flag = false;for (int k = 0; k < 4; k++) {int ii = i + dx[k];int jj = j + dy[k];if (ii < 1 || ii > n || jj < 1 || jj > n) continue;if (a[ii][jj] - 1 == a[i][j]) flag = true;if (a[ii][jj] == 1 && a[i][j] == n * n) flag = true;}if (flag) sum++;}}//    cout << sum << '\n';return sum == n * n;
}int maxd[N];int main()
{cin >> n >> m;int maxn = 0;for (int cas = 1; cas <= m; cas++) {for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) cin >> a[i][j];}int sum1 = 0, sum2 = 0;for (int i = 1; i <= n; i++) {sum1 += a[i][i];sum2 += a[i][n - i + 1];}maxd[cas] = max(sum1, sum2);if (check()) {res.push_back(cas);maxn = max(maxn, maxd[cas]);}}//    cout << maxn << '\n';//    cout << res.size() << '\n';vector<int > newres;for (int i = 0; i < res.size(); i++) {if (maxd[res[i]] == maxn) newres.push_back(res[i]);}cout << newres.size() << '\n';for (int i = 0; i < newres.size(); i++)printf("%d%c", newres[i], i == newres.size() - 1 ? '\n' : ' ');return 0;
}

A-2 PeekMax in Stack

Easy operations in stack, but the first idea I thought in the exam is through the multiset (I don’t know if other people also have thought so.). However, if "scanf"s are not used, “Time Limit Exceeded” you will get.

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1123;multiset<int > se;
stack<int > sk;int main()
{int n; cin >> n;while (n--) {string s; cin >> s;if (s == "Pop") {if (sk.empty()) puts("ERROR");else {printf("%d\n", sk.top());
//                cout << sk.top() << '\n';se.erase(se.find(sk.top()));sk.pop();}} else if (s == "Push") {int x; scanf("%d", &x);sk.push(x);se.insert(x);}else {if (sk.empty()) puts("ERROR");else printf("%d\n", *(--se.end()));
//            else cout << *(--se.end()) << '\n';}}return 0;
}

A-3 A+B with Binary Search Trees

An easy problem, but there are many trees created I really do think!

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 212345;set<int > t1;
map<int, bool > t2;int n1, n2;
int a1[N], a2[N];
vector<int > tree1[N], tree2[N];
vector<int > r1, r2;inline bool cmp1(int &a, int &b)
{return a1[a] < a1[b];
}inline bool cmp2(int &a, int &b)
{return a2[a] < a2[b];
}inline void preorder1(int root)
{r1.push_back(a1[root]);sort(tree1[root].begin(), tree1[root].end(), cmp1);for (int i = 0; i < tree1[root].size(); i++) preorder1(tree1[root][i]);
}inline void preorder2(int root)
{r2.push_back(a2[root]);sort(tree2[root].begin(), tree2[root].end(), cmp2);for (int i = 0; i < tree2[root].size(); i++) preorder2(tree2[root][i]);
}int main()
{scanf("%d", &n1);int rt1 = -1, rt2 = -1;for (int i = 0; i < n1; i++) {int k, p; scanf("%d%d", &k, &p);t1.insert(k);a1[i] = k;if (p == -1) {rt1 = i;} else {tree1[p].push_back(i);}}scanf("%d", &n2);for (int i = 0; i < n2; i++) {int k, p; scanf("%d%d", &k, &p);t2[k] = 1;a2[i] = k;if (p == -1) {rt2 = i;} else {tree2[p].push_back(i);}}int N; scanf("%d", &N);bool flag = false;vector<int > res;for (auto it : t1) {if (t2[N - it]) res.push_back(it), flag = true;}if (flag) puts("true");else puts("false");for (int i = 0; i < res.size(); i++)printf("%d = %d + %d\n", N, res[i], N - res[i]);preorder1(rt1);preorder2(rt2);for (int i = 0; i < r1.size(); i++)printf("%d%c", r1[i], i == r1.size() - 1 ? '\n' : ' ');for (int i = 0; i < r2.size(); i++)printf("%d%c", r2[i], i == r2.size() - 1 ? '\n' : ' ');return 0;
}

A-4 Transportation Hub

An easy problem too, but time limited will be considered. In this problem, I used Dijkstra algorithm which I used many times. However, guessing the meaning of the problem will also be a giant idea.

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 512;struct Edge
{int v, w;
};
vector<Edge > e[N];int n, m, k;
int sum[N][N];struct Node
{int w, v;bool operator < (const Node &other) const {return w > other.w;}
};priority_queue<Node > que;
bool vis[N];
int dist[N][N];inline void dijkstra(int s)
{memset(vis, 0, sizeof vis);que.push({0, s});sum[s][s] = 1;dist[s][s] = 0;while (!que.empty()) {int u = que.top().v; que.pop();if (vis[u]) continue;vis[u] = true;for (int i = 0; i < e[u].size(); i++) {int v = e[u][i].v, w = e[u][i].w;if (dist[s][v] > dist[s][u] + w) {dist[s][v] = dist[s][u] + w;que.push({dist[s][v], v});sum[s][v] = sum[s][u];} else if (dist[s][v] == dist[s][u] + w) {sum[s][v] += sum[s][u];}}}
}int main()
{scanf("%d%d%d", &n, &m, &k);while (m--) {int u, v, w; scanf("%d%d%d", &u, &v, &w);e[u].push_back({v, w}); e[v].push_back({u, w});}memset(dist, 0x3f, sizeof dist);for (int i = 0; i < n; i++) {dijkstra(i);}int T; scanf("%d", &T);while (T--) {int s, d; scanf("%d%d", &s, &d);vector<int > res;for (int i = 0; i < n; i++) {if (i == s || i == d) continue;if (dist[s][i] + dist[i][d] != dist[s][d]) continue;int suml = sum[s][i];int sumr = sum[i][d];if ((ll)suml * sumr >= k) {res.push_back(i);}}if (!res.size()) puts("None");else {for (int i = 0; i < res.size(); i++)printf("%d%c", res[i], i == res.size() - 1 ? '\n' : ' ');}}return 0;
}

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

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

相关文章

2023湾区产城创新大会:培育数字化供应链金融新时代

2023年12月26日&#xff0c;由南方报业传媒集团指导&#xff0c;南方报业传媒集团深圳分社主办的“新质新力——2023湾区产城创新大会”在深圳举行。大会聚集里国内产城研究领域的专家学者以及来自产业园区、金融机构、企业的代表&#xff0c;以新兴产业发展为议题&#xff0c;…

Godot4.2——爬虫小游戏简单制作

目录 一、项目 二、项目功能 怪物 人物 快捷键 分数 游戏说明 提示信息 三、学习视频 UI制作 游戏教程 四、总结 一、项目 视频演示&#xff1a;Godot4爬虫小游戏简单制作_哔哩哔哩bilibili 游戏教程&#xff1a;【小猫godot4入门教程 C#版 已完结】官方入门案例 第…

云渲染有几种方式?适合设计师的渲染方式是哪种?

云渲染是很多公司首选的渲染方式&#xff0c;它能加快渲染速度提高工作效率&#xff0c;那么云渲染有几种渲染方式呢&#xff1f;这次我们一起来看看。 1、离线渲染 离线渲染也被称作预渲染&#xff0c;通常用于对真实感和复杂细节有高要求的场合&#xff0c;如电影、动画、特效…

GPT实战系列-LangChain + ChatGLM3构建天气查询助手

GPT实战系列-LangChain ChatGLM3构建天气查询助手 用ChatGLM的工具可以实现很多查询接口和执行命令&#xff0c;而LangChain是很热的大模型应用框架。如何联合它们实现大模型查询助手功能&#xff1f;例如调用工具实现网络天气查询助手功能。 LLM大模型相关文章&#xff1a; …

深度学习数据集大合集—鱼类数据集

最近收集了一大波有关于各类鱼类的数据集&#xff0c;有淡水鱼、有深海鱼、有鱼的状态、有鱼的分类。大家可以详细查看。废话不多说&#xff0c;接下下来逐一的给大家介绍&#xff01;&#xff01; 1、鱼类检测数据集 包含鱼类的对象检测数据集 本数据集包含4种鱼类及其相关…

移动通信原理与关键技术学习(3)

1.什么是相干解调&#xff1f;什么是非相干解调&#xff1f;各自的优缺点是什么&#xff1f; 相干解调需要在接收端有一个与发送端一样的载波&#xff08;同样的频率和相位&#xff09;&#xff0c;在接收端的载波与发送端载波进行互相关操作&#xff0c;去除载波的影响。相干…

如何使用 CMake 生成一个静态库

文章目录 tutorial_3/CMakeLists.txttutorial_3/src/CMakeLists.txtcmake_tutorial/tutorial_3/src/hello.cpptutorial_3/src/hello.h根目录的 CMakeLists.txtsrc 目录的 CMakeLists.txthello.cpp 和 hello.h构建过程总结 tutorial_3/CMakeLists.txt cmake_minimum_required(V…

cf918div4的F题

Problem - F - Codeforces 这道题有个很简单的思路&#xff0c;也有一个很难的思路&#xff0c;这个很难的思路用到了树状数组(但是是大佬写的)&#xff0c;而简单的思路仅仅用到了归并排序求逆序对(也是一个大佬写的)&#xff0c;而我连简单的思路都没想到&#xff0c;(*/ω&…

Latex + Overleaf 论文写作新手笔记

.tex 文件main.tex 文件 Latex 的文档层次结构不同文档类型的层次结构report 6 层结构实例article 5 层结构实例 Latex 语法图表插入与引用使用 figure 环境来插入图片使用 ref 命令来引用已有的图表格的插入与引用 代码块列表无序列表 itemize有序列表 enumerate 学位论文项目…

Crow:路由局部插件3 调用after_handle

紧接Crow:路由局部插件2 调用before_handle-CSDN博客 完成middleware_call_helper的调用后 把res.complete_request_handler设置为后续处理完handle后将要处理的lambda 然后调用rule->handle,之后返回到Connect::handle,参考 Crow:http请求到Rule绑定的handler_的调用链…

DQL命令查询数据(一)

本课目标 理解查询的相关概念 掌握MySQL的简单查询语句 掌握MySQL中的函数 DQL 语言 DQL&#xff08;Data Query Language 数据查询语言&#xff09;&#xff1a;用于查询数据库对象中所包含的数据 DQL语言主要的语句&#xff1a;SELECT语句 DQL语言是数据库语言中最核心…

CSS3(Flex布局详解)

Flex 基本概念&#xff1a; 在 flex 容器中默认存在两条轴&#xff0c;水平主轴(main axis) 和垂直的交叉轴(cross axis)&#xff0c;这是默认的设置&#xff0c;当然你可以通过修改使垂直方向变为主轴&#xff0c;水平方向变为交叉轴&#xff0c;这个我们后面再说。 在容器中…

vue3学习记录

vue3有选项式API&#xff08;和vue2一样保留this用法&#xff09;和组合式API&#xff08;没有了this的概念&#xff09;&#xff1b;选项式 API 是在组合式 API 的基础上实现的&#xff01; 增加了组合式api&#xff0c;利于代码逻辑的组合&#xff0c;相关联的逻辑汇集在一处…

UseContentHash选项能否在打包AssetBundle时计算可靠的Hash

1&#xff09;UseContentHash选项能否在打包AssetBundle时计算可靠的Hash 2&#xff09;如何清理Native Reserved部分的内存 3&#xff09;Addressables资源完整性校验 4&#xff09;通过Image.color和CanvasRenderer.SetColor修改UI组件颜色的区别 这是第368篇UWA技术知识分享…

C++垃圾回收机制

非托管C C 有垃圾收集&#xff0c;采用Hans-Boehm Garbage Collector的形式。也可能有其他垃圾收集库。 您可以使用使用RAII的智能指针&#xff08;如果指针允许共享访问&#xff0c;则使用引用计数&#xff09;来确定何时删除对象。一个好的智能指针库是Boost的智能指针。绝大…

问题 C: 求逆序对

题目描述 给定一个序列a1,a2,…,an&#xff0c;如果存在i<j并且ai>aj&#xff0c;那么我们称之为逆序对&#xff0c;求逆序对的数目。 注意&#xff1a;n<105&#xff0c;ai<105 输入 第一行为n,表示序列长度。 接下来的n行&#xff0c;第i1行表示序列中的第i…

【spring之条件评估器】

Spring条件评估器 1. ConditionEvaluator是干嘛的2. 先看其属性类ConditionContextImp context3. 看ConditionEvaluator 的内部方法4. AnnotationTypeMetadata 是干嘛的5. Condition 接口 1. ConditionEvaluator是干嘛的 内部的使用类,用来评估注解的 2. 先看其属性类Condition…

[Linux] 一文理解HTTPS协议:什么是HTTPS协议、HTTPS协议如何加密数据、什么是CA证书(数字证书)...

之前的文章中, 已经分析介绍过了HTTP协议. HTTP协议在网络中是以明文的形式传输的. 无论是GET还是POST方法都是不安全的. 为什么不安全呢? 因为: HTTP协议以明文的形式传输数据, 缺乏对信息的保护. 如果在网络中传输数据以明文的形式传输, 网络中的任何人都可以轻松的获取数据…

何为算法之什么是算法

前言 你相信算法吗&#xff1f;对于这个问题的答案&#xff0c;我们并不关心&#xff0c;因为无论你信不信&#xff0c;不可否认的是算法席卷了你我的生活。 通信聊天时词汇的联想输入、网络购物时商品的关联推荐和下班回家时家电的智能声控&#xff0c;其算法早己悄无声息地进…

Java学习苦旅(二十六)——反射,枚举和lamda表达式

本篇博客将讲解反射&#xff0c;枚举和lamda表达式。 文章目录 反射定义用途反射基本信息反射相关的类Class类Class类中相关的方法 反射示例反射的优缺点优点缺点 枚举背景及定义常用方法枚举优缺点优点缺点 Lambda表达式背景语法函数式接口定义基本使用 变量捕获Lambda在集合…