Surtr1
Surtr1
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
Surtr1的博客
全部文章
(共91篇)
题解 | #买卖股票的最好时机(一)#
#include <iostream> #include<algorithm> const int N =1e5+10; int prices[N]; int dp[N]; int main() { int n; std::cin>>n; ...
2024-05-14
1
144
题解 | #数组中的最长连续子序列#
class Solution { public: int MLS(vector<int>& arr) { // write code here if(arr.empty()) return 0; int l...
2024-05-13
1
132
题解 | #岛屿数量#
class Solution { public: void dfs(vector<vector<char> >& grid, int r, int c) { int nr = grid.size(); int nc = grid...
2024-05-13
1
122
题解 | #岛屿数量#
import java.util.*; public class Solution { public void dfs(char[][] grid, int r, int c) { int nr = grid.length; int nc = grid[...
2024-05-13
0
127
题解 | #孩子们的游戏(圆圈中最后剩下的数)#
const int N =5e3+10; int dp[N]; class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 ...
2024-05-13
0
148
题解 | #日期累加#
#include <fstream> #include <iostream> #include <ostream> using namespace std; int GetMonthDay(int y, int m) { int month[] = { ...
2024-05-09
0
154
题解 | #日期差值#
#include <iostream> using namespace std; int GetMonthDay(int y, int m) { int month[] = { 0, 31, 28, 31, 30, 31, 30, 31,31, 30, 31, 30, 31 ...
2024-05-09
0
137
题解 | #求1+2+3+...+n#
class sum{ public: sum() { cnt+=i; i++; } static int Getret() { return cnt; } private: static int cnt...
2024-05-08
0
99
题解 | #腐烂的苹果#
class Solution { int dx[4] = { 0,0,1,-1 }; int dy[4] = { 1,-1,0,0 }; bool visit[1010][1010] = { false }; public: // 多源 bfs + 最短路 ...
2024-04-27
0
251
题解 | #数组中两个字符串的最小距离#
#include <iostream> #include<algorithm> using namespace std; const int N =1e5+10; string strs[N]; int main() { int n; cin>>...
2024-04-23
0
214
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页