Surtr1
Surtr1
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
Surtr1的博客
全部文章
(共91篇)
题解 | #接雨水问题#
//接雨水问题 //第一种比较直观 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * max water * @param arr int整型vector ...
C++
2024-08-30
0
89
题解 | #拜访#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param CityMap int整型vector<vector<>> ...
2024-08-28
0
87
题解 | #循环汉诺塔#
#include <iostream> #include<vector> using namespace std; using i64 =long long; const int mod = 1e9+7; //画几个图可以推出来这些关系 //注意是循环的 //比如 在有三个盘...
2024-08-27
1
105
题解 | #体育课测验(二)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param numProject int整型 * @param groups int整型...
C++
2024-08-23
0
132
题解 | #最少的完全平方数#
#include <iostream> #include<cmath> #include<cstring> using namespace std; const int N = 1e4+10; int f[N]; int w[110]; int main() ...
2024-08-22
0
92
题解 | #小红取数#
#include <iostream> #include<vector> using namespace std; using i64 =long long; int n,k; int main() { ios::sync_with_stdio(0),cin.tie...
2024-08-20
0
118
题解 | #奇数位丢弃#
#include <iostream> using namespace std; int main() { int a; while (cin >> a ) { // 注意 while 处理多个 case int tmp =1; ...
2024-08-17
0
144
题解 | #活动安排#
#include <bits/stdc++.h> using namespace std; typedef pair<int,int> PII; int max_act(vector<PII>& acts) { int n = 1; in...
2024-08-14
0
104
题解 | #素数回文#
#include<bits/stdc++.h> using namespace std; using i64 =long long; using i128 = __int128; i64 mul(i64 a, i64 b, i64 m) { return static_cast...
2024-08-14
0
92
题解 | #合唱团#
#include <iostream> #include<vector> using namespace std; using i64 = long long; const int N = 1e3 + 10; int main() { int n, k, d; ...
2024-08-14
1
106
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页