Skip to content

FrazierLei/PAT-A

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PAT-A

2019 年以后 PAT 的真题不再以习题的方式更新在题库中,而是需要在「教育超市」中付费购买,虽然网上有很多博主给出了题目和自己的解答,但是无法在线提交就无法确认是否能够通过所有的测试点。所以虽然明知是圈钱,还是买了每次考试的习题来做。

我会在这个仓库中上传自己的解答。代码没有经过详细推敲,也没有详细注释。大概率不是最优解法,也不能保证一定是正确的,只保证能够通过 PAT 的所有测试点。有空的话会优化一下。

目前我的 C++ 知识都学自 richenyunqi 的《算法详解》一书,非常感谢他。

  1. 代码默认使用如下模板:
#include <bits/stdc++.h>
using namespace std;
using gg = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);

    return 0;
}
  1. 为了更好的阅读体验,可以安装MathJax Plugin for Github,对githubmarkdown文本的latex语法进行渲染。

About

2019 年后 PAT 甲级题目及个人解答

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages