Bernard5
Bernard5
全部文章
题集
作业(2)
学习笔记(17)
技术教程(45)
期末应试(57)
未归档(17)
赛后分析(7)
题解(132)
归档
标签
去牛客网
登录
/
注册
some model useful
我亦是行人
全部文章
/ 题集
(共15篇)
蓝桥杯 2021 国赛
来自专栏
A 200/8=25 B #include <bits/stdc++.h> #define rep(i, l, r) for (int i = l; i <= r; ++i) using namespace std; typedef long long ll; const int ...
2021-06-05
0
682
蓝桥杯 2020 国赛
来自专栏
A #include <bits/stdc++.h> #define sc(x) scanf("%lld", &(x)) #define pr(x) printf("%d\n", (x)) #define rep(i, l, r) f...
2021-06-01
0
554
Codeforces Global Round 14
来自专栏
A 如果会达到爆炸态,向后交换以推迟即可。 #include <bits/stdc++.h> #define sc(x) scanf("%lld", &(x)) #define pr(x) printf("%lld ", (x)) #def...
2021-05-03
0
768
第十二届蓝桥杯大赛软件赛省赛 C/C++ 大学 B 组
试题 A: 空间 1 byte=8 bit1\ byte = 8\ bit1 byte=8 bit >>> 256*1024*1024*8//32 67108864 试题 B: 卡片 #include <bits/stdc++.h...
2021-04-18
2
883
codeforces eduRound 107 div2 A-D
来自专栏
https://codeforces.com/contest/1511 A 有两个服务器。你是一个电影导演,你导演了电影。喜欢的人会点赞,不喜欢的人会点踩。而对于第三种人,如果他看到的踩比赞多,他就会点踩,否则点赞。问最多可以收到多少个赞。 比较简单的贪心。 #include <bits/st...
2021-04-13
0
606
蓝桥杯官网 往届试题
来自专栏
带分数 #include<bits/stdc++.h> #define rep(i,l,r) for(int i=l;i<=r;++i) using namespace std; int a[15]; int main() { for(int i=0; i<10; +...
2021-04-06
0
755
2020 第十一届蓝桥杯 省赛 第二场 B组 C/C++
来自专栏
门牌制作 #include <bits/stdc++.h> #define rep(i, l, r) for (int i = l; i <= r; ++i) using namespace std; int main() { int cnt = 0; rep(i,...
2021-03-23
0
777
天梯赛 L2
来自专栏
链表去重 02 #include <bits/stdc++.h> using namespace std; map<string, pair<int, string>> mp; map<int, bool> vis; struct node { ...
STL
2021-03-11
0
547
牛客挑战赛47
来自专栏
https://ac.nowcoder.com/acm/contest/10743 A 思维题。最终的gcd最大值必为排序后每两个相邻数的差值的gcd。那么就计算最小的数需要加多少才能成为这个gcd的倍数就可以了。 #include <bits/stdc++.h> #define sc(...
图论
GCD
思维
位运算
2021-01-10
5
775
PTA 题集 L1
L1-006 连续因子 #include <bits/stdc++.h> #define sc(x) scanf("%lld", &(x)) #define pr(x) printf("%lld\n", x) using namespace...
2020-10-22
0
644
首页
上一页
1
2
下一页
末页