north_h
north_h
全部文章
codeforces
Acwing(4)
SMU-XCPC(21)
数据结构(3)
杂项(1)
牛客OJ(3)
题解(2)
归档
标签
去牛客网
登录
/
注册
north_h的博客
菜鸡上路!
全部文章
/ codeforces
(共9篇)
Codeforces Round 888 (Div. 3)
传送门 39d226de-bf53-4bf9-83ab-79815a6dda90 A Escalator Conversations 读懂题意即可 /* Author : north_h File : A.cpp Time : 2023/7/26/12:32 ...
2023-07-27
0
341
Codeforces Round 786 (Div. 3)(vp)
传送门 A Number Transformation 赛时做复杂了,其实就是两种情况,x大于y或者x不能整除y的情况下不行,能整出的情况下直接输出1和x/y即可写复杂了,得亏数据范围小不然感觉容易挂 // // Author : north_h // File : A.cpp // Time...
2023-07-18
0
310
Educational Codeforces Round 148 (Rated for Div. 2)
传送门 A New Palindrome 就判断回文串中出现的字母种类是不是大于1 #include<bits/stdc++.h> //#define int long long #define fi first #define se second using namespace s...
2023-05-14
0
506
Codeforces Round 820 (Div. 3)(VP)
传送门 A Two Elevators 注意读题,读懂题目即可,比较两部电梯到达1楼所需要的时间。 #include<bits/stdc++.h> #define int long long using namespace std; const int N = 200010; i...
2023-05-05
0
252
Codeforces Round 826 (Div. 3)(VP)
传送门 A Compare T-Shirt Sizes 简单模拟,分情况讨论即可。 #include<bits/stdc++.h> #define int long long using namespace std; const int N = 100010; void solv...
2023-05-05
0
262
Codeforces Round 868 (Div. 2)
传送门 A A-characteristic 题意就是让我们构造一个序列,是的满足i<j的条件下a[i]*a[j]的值为1的个数满足题目要求,我们其实只用关心1和-1的个数即可,通过个数来计算出有多少对1和-1满足题意,满足题意输出YES结果return即可,如果到最后都不能,就输出NO #i...
2023-04-28
0
216
Codeforces Round 866 (Div. 2)
传送门 A Yura's New Name 签到题,怪我没有皇后看样例子,意思就是把有^和_组成的字符串加若干个字符使得全部都是笑脸(^^或^_^),所一我们遍历一下字符串,把连着都是两个的地方加上^即可,最后处理一下开头和结尾就行 #include<bits/stdc++.h> #d...
2023-04-17
0
460
Codeforces Round 865 (Div. 2)
题目链接 本场比赛还行,就是要提高思考的速度,速度太慢导致排名靠后了,继续加油,早日绿名。 A #include<iostream> #include<cstring> #include<algorithm> #include<map> #includ...
2023-04-13
0
316
Codeforces Round 863 (Div. 3)
题目链接 总体来说还是很考思维的,cf的题目质量非常不错。 A Insert Digit 也不知道为啥,比赛搞半天,其实就是找到比给的数小的位置的时候将它放在这个位置的前面,如果没有找到就放在最后面即可。 #include<iostream> #include<cstring>...
2023-04-12
0
473