牛马ID
牛马ID
全部文章
分类
题解(81)
归档
标签
去牛客网
登录
/
注册
牛马ID的博客
全部文章
(共135篇)
题解 | #数组构造#
#include <bits/stdc++.h> using namespace std; const int maxn = 1000000; const long long mod&...
C++
2022-10-09
0
339
题解 | #字符的循环#
#include <bits/stdc++.h> using namespace std; int main() { // 找到第一个最小短的串,能通过覆盖到达整个,其余的都...
C++
2022-10-08
0
307
题解 | #神奇的字符#
#include <bits/stdc++.h> using namespace std; int main() { int n, m,i(0),j(0); &nb...
C++
2022-10-08
0
249
题解 | #图的增边#
#include <bits/stdc++.h> using namespace std; /* * 二分图,图的所有顶点被分为两个部分,每个部分中的某些可能是相连的,但是在相同部分的顶点之间不连接; */ // 染色操作! vo...
C++
2022-10-08
0
312
题解 | #快乐节点#
#include <bits/stdc++.h> // 多源头广度优先遍历! using namespace std; int main() { int n,&nb...
C++
2022-10-04
0
331
题解 | #食品#
#include <bits/stdc++.h> // 贪心 ! using namespace std; typedef long long ll; struct Node {...
C++
2022-10-04
1
252
题解 | #牛牛吃草#
#include <iostream> #include <vector> using namespace std; int main(){ in...
C++
2022-10-04
0
245
题解 | #模拟队列#
#include <bits/stdc++.h> using namespace std; class Queue { private: queue<l...
C++
2022-10-02
0
233
题解 | #模拟栈#
#include <bits/stdc++.h> using namespace std; class MyStack { private: int s...
C++
2022-10-02
0
223
题解 | #染色#
#include <bits/stdc++.h> // 模拟一定超时,并查集思想! using namespace std; int main() { int&nbs...
C++
2022-10-01
1
243
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页