north_h
north_h
全部文章
SMU-XCPC
Acwing(4)
codeforces(9)
数据结构(3)
杂项(1)
牛客OJ(3)
题解(2)
归档
标签
去牛客网
登录
/
注册
north_h的博客
菜鸡上路!
全部文章
/ SMU-XCPC
(共21篇)
SMU Summer 2023 Contest Round 6
传送门 A There Are Two Types Of Burgers 简单的枚举每一种情况,来贪心的选择 // // Author : north_h // File : A.cpp // Time : 2023/7/24/11:59 // _ _ ...
2023-07-27
0
266
23暑假友谊赛No.2
传送门 A 雨 签到题,可惜我还多打了一个空格,不好说 /* Author : north_h File : B.cpp Time : 2023/7/26/14:58 _ _ _ _ __ ___...
2023-07-27
0
243
SMU Summer 2023 Contest Round 5
传送门 A Points in Segments 直接把给出区间上的每一个放入set里,最后输出不在set里面的就行 // // Author : north_h // File : B.cpp // Time : 2023/7/21/11:51 // _ ...
2023-07-22
0
239
SMU Summer 2023 Contest Round 4
传送门 A Telephone Number standard 找到第一个8所在的位置即可,最后判断一下,如果没有找到或者第一个8所在的位置后面的数不够11个就不行 #include<bits/stdc++.h> #define IOS ios::sync_with_stdio(fals...
2023-07-17
0
285
SMU Spring 2023 Contest Round 2
传送门 C Darkness I 这个题就是找出一种放最少几个黑块能全部变黑,我么可以沿着对角线放,先以最小的那一边的正方形用对角线的方法放完,然后再两隔一列放一个,但是要注意向上取整。 #include<bits/stdc++.h> #define int long long #de...
2023-05-14
1
657
SMU Spring 2023 Contest Round 3
传送门 A. 签到啦 排个序每次选最大的 #include<bits/stdc++.h> #define int long long #define endl '\n' #define fi first #define se second using namespace std; ...
2023-05-14
0
215
SMU Spring 2023 Trial Contest Round 10
传送门 A Remove Duplicates 记录每个数最后出现的位置,最后按照顺序输出即可 #include<bits/stdc++.h> #define int long long using namespace std; const int N = 200010; int...
2023-04-26
0
246
SMU Spring 2023 Trial Contest Round 9
传送门 A Wrong Subtraction #include<bits/stdc++.h> #define int long long using namespace std; const int N = 200010; int a[N], b[N]; void solve...
2023-04-25
0
349
西南民族大学 春季 2023 训练赛 5
传送门 L1-1 自动编程 #include<iostream> #include<cstdio> using namespace std; int main(){ int a; cin>>a; printf("print(%d)",a...
2023-04-17
0
307
西南民族大学 春季 2023 训练赛4
题目链接 A 小石的图形 简单题,但要注意PI的精度问题我是直接使用计算器,也可以使用acos(-1)或者使用c++里面的定义好的M_PI #include<iostream> #include<cstring> #include<algorithm> #incl...
2023-04-07
0
345
首页
上一页
1
2
3
下一页
末页