会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Asurudo Jyo の 倉 庫
手握红莲,青息不偃
首页
新随笔
联系
订阅
管理
上一页
1
···
22
23
24
25
26
27
28
29
30
···
47
下一页
2019年2月17日
Leetcode-995 Minimum Number of K Consecutive Bit Flips(K 连续位的最小翻转次数)
摘要: 经典ACM问题——奶牛掉头
阅读全文
posted @ 2019-02-17 12:10 Asurudo
阅读(488)
评论(0)
推荐(0)
编辑
Leetcode-994 Rotting Oranges(腐烂的橘子)
摘要: 原则上来说,应该用BFS,看了一下数据范围,决定无脑暴力撸过
阅读全文
posted @ 2019-02-17 12:09 Asurudo
阅读(495)
评论(0)
推荐(0)
编辑
Leetcode-993 Cousins in Binary Tree(二叉树的堂兄弟节点)
摘要: 1 class Solution 2 { 3 public: 4 bool judge(TreeNode* root, int x, int y) 5 { 6 if(root!=NULL) 7 { 8 9 if(root->left&&root->right...
阅读全文
posted @ 2019-02-17 12:08 Asurudo
阅读(324)
评论(0)
推荐(0)
编辑
2019年2月14日
Leetcode-552 Student Attendance Record II(学生出勤记录 II)
摘要: 1 #define maxn 1000000 2 #define _for(i,a,b) for(int i = (a);i < (b);i ++) 3 #define pb push_back 4 #define MOD 1000000007 5 6 class Solution 7 { 8 public: 9 int checkRecord(int...
阅读全文
posted @ 2019-02-14 16:19 Asurudo
阅读(280)
评论(0)
推荐(0)
编辑
Leetcode-213 House Robber II(打家劫舍 II)
摘要: 1 #define maxn 1000000 2 #define _for(i,a,b) for(int i = (a);i & nums) 9 { 10 int sz = nums.size(); 11 if(sz==0) 12 return 0; 13 else if...
阅读全文
posted @ 2019-02-14 09:56 Asurudo
阅读(303)
评论(0)
推荐(0)
编辑
2019年2月13日
Leetcode-312 Burst Balloons(戳气球)
摘要: 1 #define maxn 1000000 2 #define _for(i,a,b) for(int i = (a);i & nums,int le,int ri) 9 { 10 11 if(le==ri-1) 12 return 0; 13 if(dp[le][r...
阅读全文
posted @ 2019-02-13 11:39 Asurudo
阅读(162)
评论(0)
推荐(0)
编辑
2019年2月10日
Leetcode-991 Broken Calculator(坏了的计算器)
摘要: 经典数学题
阅读全文
posted @ 2019-02-10 18:19 Asurudo
阅读(254)
评论(0)
推荐(0)
编辑
Leetcode-992 Subarrays with K Different Integers(K 个不同整数的子数组)
摘要: 并查集水过
阅读全文
posted @ 2019-02-10 18:18 Asurudo
阅读(602)
评论(0)
推荐(0)
编辑
Leetcode-989 Add to Array-Form of Integer(数组形式的整数加法)
摘要: 大数加法,没什么好说的,乱搞过了
阅读全文
posted @ 2019-02-10 18:17 Asurudo
阅读(211)
评论(0)
推荐(0)
编辑
2019年2月7日
Leetcode-673 (Number of Longest Increasing Subsequence)最长递增子序列的个数
摘要: 1 #define _for(i,a,b) for(int i = (a);i & nums) 6 { 7 int sz = nums.size(); 8 vector> dp (sz,{1,1});//LISlen times 9 10 int LISlen = 1; 1...
阅读全文
posted @ 2019-02-07 08:10 Asurudo
阅读(157)
评论(0)
推荐(0)
编辑
上一页
1
···
22
23
24
25
26
27
28
29
30
···
47
下一页
公告