会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Asurudo Jyo の 倉 庫
手握红莲,青息不偃
首页
新随笔
联系
订阅
管理
上一页
1
···
15
16
17
18
19
20
21
22
23
···
47
下一页
2019年5月19日
Leetcode-5064 Remove All Adjacent Duplicates In String(删除字符串中的所有相邻重复项)
摘要: 1 #define _for(i,a,b) for(int i = (a);i < b;i ++) 2 3 class Solution 4 { 5 public: 6 string removeDuplicates(string S) 7 { 8 _for(i,0,S.size()-1) 9 ...
阅读全文
posted @ 2019-05-19 12:10 Asurudo
阅读(324)
评论(0)
推荐(0)
编辑
Leetcode-5063 Last Stone Weight(最后一块石头的重量)
摘要: 白给题
阅读全文
posted @ 2019-05-19 12:09 Asurudo
阅读(437)
评论(0)
推荐(0)
编辑
2019年5月12日
Leetcode-5058 Longest Duplicate Substring(最长重复子串)
摘要: 原谅我使用了不道德的手段,对样例编程
阅读全文
posted @ 2019-05-12 12:40 Asurudo
阅读(470)
评论(0)
推荐(0)
编辑
Leetcode-5056 Flower Planting With No Adjacent(不邻接植花)
摘要: 染色问题,没想太多,搜就完事了
阅读全文
posted @ 2019-05-12 12:39 Asurudo
阅读(349)
评论(0)
推荐(0)
编辑
Leetcode-5055 Robot Bounded In Circle(困于环中的机器人)
摘要: 数据范围小于100,那多循环几次看看是否形成闭合回路就行了
阅读全文
posted @ 2019-05-12 12:38 Asurudo
阅读(228)
评论(0)
推荐(0)
编辑
2019年5月5日
Leetcode-5047 Minimum Score Triangulation of Polygon(多边形三角剖分的最低得分)
摘要: 多边形三角剖分,DP走起来
阅读全文
posted @ 2019-05-05 12:10 Asurudo
阅读(371)
评论(0)
推荐(0)
编辑
Leetcode-5050 Binary Search Tree to Greater Sum Tree(从二叉搜索树到更大和树)
摘要: 第二题我完全没看懂他想表达什么,不过通过例子去理解,基本上就是右中左这种顺序把结点的值换一下吧
阅读全文
posted @ 2019-05-05 12:09 Asurudo
阅读(415)
评论(0)
推荐(0)
编辑
Leetcode-5051 Valid Boomerang(有效的回旋镖)
摘要: 也不知道在写什么,加特判加一堆,还好过了
阅读全文
posted @ 2019-05-05 12:08 Asurudo
阅读(301)
评论(0)
推荐(0)
编辑
2019年4月28日
Leetcode-5040 Coloring A Border(边框着色)
摘要: 1 const int dx[] = {1,-1,0,0}; 2 const int dy[] = {0,0,1,-1}; 3 #define _for(i,a,b) for(int i = (a);i >& grid, int r0, int c0, int color,int lo) 9 { 10 vis[r0][c0] = 1; 11 ...
阅读全文
posted @ 2019-04-28 14:34 Asurudo
阅读(364)
评论(0)
推荐(0)
编辑
Leetcode-5039 Moving Stones Until Consecutive(移动石子直到连续)
摘要: 1 class Solution 2 { 3 public: 4 vector numMovesStones(int a, int b, int c) 5 { 6 vector rnt(2,0); 7 vector v; 8 v.push_back(a); 9 ...
阅读全文
posted @ 2019-04-28 14:33 Asurudo
阅读(350)
评论(0)
推荐(0)
编辑
上一页
1
···
15
16
17
18
19
20
21
22
23
···
47
下一页
公告