会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Asurudo Jyo の 倉 庫
手握红莲,青息不偃
首页
新随笔
联系
订阅
管理
上一页
1
···
33
34
35
36
37
38
39
40
41
···
47
下一页
2018年10月9日
Leetcode-918 Maximum Sum Circular Subarray(环形子数组的最大和)
摘要: 核心代码部分参考:https://www.cnblogs.com/TenosDoIt/p/3698246.html
阅读全文
posted @ 2018-10-09 19:23 Asurudo
阅读(444)
评论(0)
推荐(0)
编辑
Leetcode-917 Reverse Only Letters(仅仅反转字母)
摘要: 1 class Solution 2 { 3 public: 4 string reverseOnlyLetters(string S) 5 { 6 string onlyLetter; 7 for(auto c:S) 8 { 9 if...
阅读全文
posted @ 2018-10-09 19:20 Asurudo
阅读(174)
评论(0)
推荐(0)
编辑
2018年9月30日
二位几何运算类
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 11 using namespace std; 12 struct Point 13 { 14 int x,y; 15 Point(int ...
阅读全文
posted @ 2018-09-30 14:10 Asurudo
阅读(174)
评论(0)
推荐(0)
编辑
前序工作(宏定义,typedef,函数等)
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 11 #define _for(i,a,b) for(int i = (a);i = b; 23 } 24 }; 25 26 int readin...
阅读全文
posted @ 2018-09-30 13:46 Asurudo
阅读(275)
评论(0)
推荐(0)
编辑
Leetcode-916 Word Subsets(单词子集)
摘要: 1 class Solution 2 { 3 public: 4 vector wordSubsets(vector& A, vector& B) 5 { 6 int hash[28]; 7 int hash2[28]; 8 memset(hash,0,sizeof(h...
阅读全文
posted @ 2018-09-30 11:52 Asurudo
阅读(481)
评论(0)
推荐(0)
编辑
Leetcode-915 Partition Array into Disjoint Intervals(分割数组)
摘要: 1 class Solution 2 { 3 public: 4 int partitionDisjoint(vector& A) 5 { 6 if(A.size()==2&&A[0] B(A.size(),0); 9 10 int Min = 10000000; 11...
阅读全文
posted @ 2018-09-30 11:07 Asurudo
阅读(310)
评论(0)
推荐(0)
编辑
Leetcode-914 X of a Kind in a Deck of Cards(卡牌分组)
摘要: 1 class Solution 2 { 3 public: 4 bool hasGroupsSizeX(vector& deck) 5 { 6 vector deckList(10002,0); 7 8 // int max = 0; 9 f...
阅读全文
posted @ 2018-09-30 11:06 Asurudo
阅读(656)
评论(0)
推荐(0)
编辑
2018年9月29日
UVA-12100 Printer Queue
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 8 using namespace std; 9 10 int main () 11 { 12 int N; 13 cin >> N; 14 while(N--) 15 { 16 ...
阅读全文
posted @ 2018-09-29 15:58 Asurudo
阅读(156)
评论(0)
推荐(0)
编辑
UVA-1595 Symmetry
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 int main () 9 { 10 int N; 11 cin >> N; 12 while(N --) 13 { 14 int M; 15 cin >> ...
阅读全文
posted @ 2018-09-29 15:18 Asurudo
阅读(135)
评论(0)
推荐(0)
编辑
UVA-10763 Foreign Exchange
摘要: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 int main () 9 { 10 int N; 11 while(cin >> N && N != 0) 12 { 13 map m; 14 while(N--)...
阅读全文
posted @ 2018-09-29 14:59 Asurudo
阅读(113)
评论(0)
推荐(0)
编辑
上一页
1
···
33
34
35
36
37
38
39
40
41
···
47
下一页
公告