PTA 520钻石争霸赛 2021
7-1 自动编程
签到题
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int main() {
int n;
cin >> n;
printf("print(%d)", n);
return 0;
}
7-2 加油冲鸭
签到
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int main() {
int n, m, s;
cin >> n >> m >> s;
int p = n - m * s;
if (p > n / 2) {
printf("hai sheng %d mi! jia you ya!\n", p);
} else {
printf("hai sheng %d mi! chong ya!\n", p);
}
return 0;
}
7-3 520的表白
签到
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int main() {
int n;
cin >> n;
for (int i = 0; i < 520; i++)
cout << n << "\n";
return 0;
}
7-4 奇葩楼层
遍历一遍楼层,带忌讳的数字不记数就行
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int main() {
int n, m;
cin >> n >> m;
int sum = 0;
for (int i = 1; i <= n; i++) {
int j = i, f = 1;
while (j) {
int k = j % 10;
j /= 10;
if (k == m) {
f = 0;
break;
}
}
if (f) sum++;
}
cout << sum << "\n";
return 0;
}
7-5 大勾股定理
平方和数太大,找规律,可以发现n = 1时,3开始;n = 2时,10开始, n = 3时,21开始。
1 * 3 = 3;
2 * 5 = 10;
3 * 7 = 21;
从而猜出n * (2 * n + 1)。
15分题不会搞很复杂的数列的。
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int main() {
int n;
cin >> n;
int k = n * (2 * n + 1);
for (int i = k; i <= k + n; i++) {
if (i == k) cout << i << "^2";
else cout << " + " << i << "^2";
}
cout << " =\n";
int j = k + n + 1, m = 0;
while (m < n) {
if (m == 0) cout << j << "^2";
else cout << " + " << j << "^2";
j++;
m++;
}
return 0;
}
7-6 矩阵列平移
模拟,注意写的时候不要把行和列写岔了就没啥问题
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int a[110][110]; int main() {
int n, k, x;
cin >> n >> k >> x;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
cin >> a[i][j];
int m = 1;
for (int i = 2; i <= n; i += 2) {
for (int j = n; j > m; j--)
a[j][i] = a[j - m][i];
for (int j = 1; j <= m; j++)
a[j][i] = x;
m++;
if (m > k) m = 1;
} for (int i = 1; i <= n; i++) {
int sum = 0, j = 1;
while (j <= n) sum += a[i][j], j++;
if (i == 1)
cout << sum;
else cout << ' ' << sum;
}
return 0;
}
7-7 约会大作战
题解在代码理,时间紧代码写的很不好,巨巨可以用结构体整理以下
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int a[110][110], b[110][110], su1[110], su2[110];
int st1[110], st2[110], max1[110], max2[110];
int pre1[110], pre12[110];
int pre2[110], pre22[110]; int main() {
int n, m, q;
cin >> n >> m >> q;
for (int i = 0; i < 110; i++) {
max1[i] = max2[i] = -110;//存该组第i位前2的最大好感度,初始化写最小
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++)
cin >> a[i][j];//1组第i位对2组第j位的好感度
} for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++)
cin >> b[i][j];//2组第i位对1组第j位的好感度
} int x, y, f = 0;
while (q--) {
cin >> x >> y;
st1[x]++;
st2[y]++;//判断是否拒绝2次
if (st1[x] > 2 && st2[y] > 2) {//都已经拒绝2次
if (a[x][y] > max1[x] && b[y][x] > max2[y]) {//判断是否大于拒绝前2次人的好感度
if (!su1[x] && !su2[y]) {//su是表示有木有约会成功过,1就是约过了
su1[x] = su2[y] = 1;
cout << x << ' ' << y << "\n";
f = 1;//判断有木有人约会成功过
}
}
} pre1[x] = pre12[x];
pre12[x] = a[x][y];
//1组第x个人的拒绝的前2个的好感度,这个时候有新的好感度,所以把第2个好感度
//覆盖到第一个,第二个好感度等于新的拒绝的好感度 pre2[y] = pre22[y];//与上同理
pre22[y] = b[y][x]; max1[x] = max(pre1[x], pre12[x]);//存该组第x位拒绝前2位的最大好感度
max2[y] = max(pre2[y], pre22[y]);//同理
}
if (!f) cout << "PTA is my only love\n";//没有人约会
return 0;
}
7-8 浪漫侧影
左右视其实就是二叉树各层数的第一个和最后一个,所以根据中后序遍历下前序,声明个层数向量存每层的树节点就行,最后根据左右视输出每层的第一个和最后一个节点
#include<bits/stdc++.h> typedef long long ll;
const int maxm = 1e5 + 5;
const int infmax = INT_MAX;
const int infmin = INT_MIN;
using namespace std; int in[250], post[250], maxdepth = 0;
vector<int> v[250]; void pre(int root, int start, int end, int depth) {
if (start > end)
return;
maxdepth = max(maxdepth, depth);
int i = start;
while (i < end && in[i] != post[root]) i++;
v[depth].push_back(post[root]);
pre(root - 1 - (end - i), start, i - 1, depth + 1);
pre(root - 1, i + 1, end, depth + 1);
} int main() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) cin >> in[i];
for (int i = 1; i <= n; i++) cin >> post[i]; pre(n, 1, n, 1);
cout << "R:";
for (int i = 1; i <= maxdepth; i++) cout << ' ' << v[i].back();
cout << "\n"; cout << "L:";
for (int i = 1; i <= maxdepth; i++) cout << ' ' << v[i].front();
cout << "\n";
return 0;
}
over,代码写的有点烂,巨巨们轻喷。
PTA 520钻石争霸赛 2021的更多相关文章
- PTA2022 520钻石争霸赛题解
7-1 520表白 不用说 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int max ...
- PAT520 钻石争霸赛 7-6 随机输一次
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1000; ll n ...
- codevs 2021 中庸之道
2021 中庸之道 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题目描述 Description 给定一个长度为N的序列,有Q次询问,每次 ...
- AC日记——中庸之道 codevs 2021
2021 中庸之道 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题解 查看运行结果 题目描述 Description 给定一个长度为N的序列 ...
- 皓远的第二次博客作业(最新pta集,链表练习及期中考试总结)
前言: 知识点运用:正则表达式,有关图形设计计算的表达式和算法,链表的相关知识,Java类的基础运用,继承.容器与多态. 题量:相较于上次作业,这几周在java方面的练习花了更多的精力和时间,所要完成 ...
- 深入super,看Python如何解决钻石继承难题 【转】
原文地址 http://www.cnblogs.com/testview/p/4651198.html 1. Python的继承以及调用父类成员 python子类调用父类成员有2种方法,分别是普通 ...
- 1Z0-053 争议题目解析520
1Z0-053 争议题目解析520 考试科目:1Z0-053 题库版本:V13.02 题库中原题为: 520.Which of the following are not disabled by de ...
- 干货分享:MySQL之化险为夷的【钻石】抢购风暴
抢购钻石不稀奇,稀奇的是有钱赚不到,事情发生在2015年5月20日,大好的日子自然少不了商家的参与.即可为您还原现场,解决思路献给各位,请欣赏Show Time,everybody~ 1.优化起因及工 ...
- lumia 520无法开机
拿出尘封已久的lumia 520,发现其开机困难,现象如下: 1.拿掉电池再放回去有几率开机 2.轻轻地用手机砸向桌面时手机会重启 因为手机在更新WP8.1之后就出问题了,所以先得定位问题,在黑屏的时 ...
随机推荐
- CF1612D X-Magic Pair
题意: 给一个数对 \((a,b)\) ,每次可以进行操作 \((a,b) \to (|a-b|,b)\) 或 \((a,b) \to (a,∣a−b∣)\),问最后能否令 \(a=x\) 或 \(b ...
- java 桥接方法
1.桥接方法简介 桥接方法是jdk1.5引入泛型后,为使java泛型方法生成的字节码与jdk1.5版本之前的字节码兼容由编译器自动生成的. 可用method.isBridge() 判断method是否 ...
- gitlab+jenkins自动构建jar包并发布
一.背景介绍: 公司软件都是java开发的,一般都会将java代码打包成jar包发布:为了减轻运维部署的工作量,合理偷懒,就需要自动化流程一条龙服务:开发将代码提交到gitlab--->jenk ...
- 干货分享:小技巧大用处之Bean管理类工厂多种实现方式
前言:最近几个月很忙,都没有时间写文章了,今天周末刚好忙完下班相对早点(20:00下班)就在家把之前想总结的知识点写出来,于是就有了这篇文章.虽无很高深的技术,但小技巧有大用处. 有时我们经常需要将实 ...
- SpringBoot定时任务 - Spring自带的定时任务是如何实现的?有何注意点?
通过前文我们基本梳理了定时任务体系:Timer和ScheduledExecutorService是JDK内置的定时任务方案,以及Netty内部基于时间轮实现的HashedWheelTimer,再到Qu ...
- Map集合的遍历方式以及TreeMap集合保存自定义对象实现比较的Comparable和Comparator两种方式
Map集合的特点 1.Map集合中保存的都是键值对,键和值是一一对应的 2.一个映射不能包含重复的值 3.每个键最多只能映射到一个值上 Map接口和Collection接口的不同 Map是双列集合的根 ...
- 从 Delta 2.0 开始聊聊我们需要怎样的数据湖
盘点行业内近期发生的大事,Delta 2.0 的开源是最让人津津乐道的,尤其在 Databricks 官宣 delta2.0 时抛出了下面这张性能对比,颇有些引战的味道. 虽然 Databricks ...
- 从 React 原理来看 ahooks 是怎么解决 React 的闭包问题的?
本文是深入浅出 ahooks 源码系列文章的第三篇,该系列已整理成文档-地址.觉得还不错,给个 star 支持一下哈,Thanks. 本文来探索一下 ahooks 是怎么解决 React 的闭包问题的 ...
- .NET 6应用程序适配国产银河麒麟V10系统随记
最近想在麒麟系统上运行.NET 6程序,经过一番折腾最终完成了,简单记录一下. 目标系统: CPU: aarch64架构(ARM64) 操作系统:银河麒麟V10高级服务器系统 银河麒麟V10系统(以下 ...
- feign远程调用出错
如果你传递的参数,比较复杂时,默认会采用POST的请求方式. 传递单个参数时,推荐使用@PathVariable,如果传递的单个参数比较多,这里也可以采用@RequestParam,Feign接口中不 ...