03 2021 档案

摘要:完美二叉树的层序遍历 方法一:打表,这个是看到别人的方法,感觉很神奇,要是实在不会的时候可以试试。 #include<bits/stdc++.h>using namespace std;int main() { int n,a[102],pos[102]; cin >> n; for(int i=1 阅读全文
posted @ 2021-03-28 21:45 yyscn 阅读(121) 评论(0) 推荐(0)
摘要:本次组队赛我做出两个中等难度题目,属于较好的发挥。望再接再厉。 补提:a a题是我的短板,我不擅长的字符串操作。a题题目不算难,但是考虑方法问题。此题结合了字符串和栈操作。 #include<bits/stdc++.h>using namespace std;int main(){ int n; c 阅读全文
posted @ 2021-03-28 12:27 yyscn 阅读(62) 评论(0) 推荐(0)
摘要:B. Berland Crossword(1400) time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Berland cross 阅读全文
posted @ 2021-03-15 13:55 yyscn 阅读(77) 评论(0) 推荐(0)
摘要:总结:本次比赛赛况尤为惨烈,个人状态没有找到,短板字符串暴露出来了,比赛时专注认真才可以发挥出最好水平。 补题: B 题目不算难,时间不够了。题目要求每一行每一列都包括所有的元音字母,直接便利即可。 CodeForces - 1166B #include<bits/stdc++.h> #includ 阅读全文
posted @ 2021-03-07 16:21 yyscn 阅读(42) 评论(0) 推荐(0)