简介

自我介绍

各位读者,你们好。我是zqsml,也可以称呼我为小轩。

目前在加拿大就读高中,正在学习C++和算法竞赛的相关知识,可以算是一个oier + 预备役ACM选手吧
这里是我放题解和一些总结笔记的博客,欢迎点赞评论,或者留下联系方式交流学习,我会尽力把有用的东西放在这里和大家分享。

放在博客里的代码都是确认可以AC且做法高效的代码,内容包括且不限于: Codeforces Div.2 题解,UVa,Kattis,TopCoder,AcWing...
以及一些经典算法的高效模板,转载自acwing.com,以及北大yxc老师的模板(我买了正版课且标明出处,应该不侵权了 qwq)

/* 这是我的coding style, 会有很多换行和空格, 希望大家看的舒服 */
#include <iostream>
using namespace std;

int main(){
	cout << "Hello World!" << endl;
	return 0;
}

English Version

Hello everyone, I'm zqsml and this is my coding blog.

I'm currently a high school student in Canada, and self-taught competitive programming using C++.
This is the blog where I'll post problem solutions and some study notes. Feel free to leave your comments here or contact me for study purposes.

Most codes in the blog are reliable and efficient for programming contests, ranging from Codeforces, UVa, Kattis, TopCoder, AcWing...
Some classic implementations were created by yxc, graduated from Peking University and created an algorithm website named acwing.com, I learnt algorithm in his classes.

/* here's my coding style, I put many spaces and newline in my codes, hope you guys enjoy! */
#include <iostream>
using namespace std;

int main(){
	cout << "Hello World!" << endl;
	return 0;
}
上一篇:我的第五个代码


下一篇:python 中文编码