博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode2
阅读量:5093 次
发布时间:2019-06-13

本文共 2448 字,大约阅读时间需要 8 分钟。

今天闲来无事又刷了几道。

 

Longest Valid Parentheses

Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.

For "(()", the longest valid parentheses substring is "()", which has length = 2.

Another example is ")()())", where the longest valid parentheses substring is "()()", which has length = 4.

class Solution {public:    int longestValidParentheses(string &s) {        if (s == "") return 0;        int cnt = 0;        int totr = 0;        int lastValid = -1;        for (int i = 0;i < s.length();i++)        {            if (s[i] == ')') totr++;            cnt += (s[i] == '(' ? 1:-1);            if (cnt < 0)             {                if (i+1 < s.length())                {                    s = s.substr(i+1,s.length()-i-1);                    return max(i,longestValidParentheses(s));                }                else return i;            }            if (cnt == 0) lastValid = i;        }                if (lastValid > 0)        {            s = s.substr(lastValid+1,s.length()-lastValid-1);            for (auto& x : s) x = (x=='('?')':'(');            reverse(s.begin(),s.end());            return max(longestValidParentheses(s),lastValid + 1);        }        else        {            for (auto& x : s) x = (x=='('?')':'(');            reverse(s.begin(),s.end());            return longestValidParentheses(s);        }    }};

只能说,我想歪了。这是道简单的DP,中间还WA了很多次。

我这个神奇的做法也是醉了。

比较需要引起注意的是,递归当中,如果带着数组字符串之类的,如果没有&,很容易MLE。

标准的做法是 f[i] 表示 i 结尾最长的合法序列,

如果(结尾, 0

如果()结尾, f[i-2]+2

如果))结尾, s[i - f[i-1] - 1]=='(' 的情况下 f[i-f[i-1]-2]+f[i-1]+2

 

11.17

想多了

Given an array of non-negative integers, you are initially positioned at the first index of the array.

Each element in the array represents your maximum jump length at that position.

Your goal is to reach the last index in the minimum number of jumps.

For example:

Given array A = [2,3,1,1,4]

The minimum number of jumps to reach the last index is 2. (Jump 1 step from index 0 to 1, then 3 steps to the last index.)

贪心

class Solution {public:    int jump(vector
& a) { int cl = 0; int cr = 0; int steps = 0; while (cl <= cr && cr < a.size() - 1) { int nr = cr; for (int i = cl;i<=cr;i++) nr = max(nr,i+a[i]); steps++; cl = cr+1; cr = nr; } return steps; }};

 

转载于:https://www.cnblogs.com/soya/p/4915580.html

你可能感兴趣的文章
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
jQuery 自定义函数
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
第一阶段冲刺06
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
HDU 4635 Strongly connected
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>