摘要: 来源:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 数组中不断改变起始位置,和已遍历到的位置设为终止位置,达到滑动效果 阅读全文
posted @ 2019-11-11 19:22 RE-TLE 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-10-22 19:13 RE-TLE 阅读(188) 评论(0) 推荐(0) 编辑
摘要: https://codeforces.com/contest/1236/problem/B 看代码即可,复制过来有些乱 B. Alice and the List of Presents time limit per test 1 second memory limit per test 256 m 阅读全文
posted @ 2019-10-18 19:17 RE-TLE 阅读(282) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h>using namespace std;char a[15][15]; int main(){ int n,m; while(~scanf("%d%d",&n,&m)){ memset(a,0,sizeof(a)); for(int i=1;i<=n;i 阅读全文
posted @ 2019-10-01 21:07 RE-TLE 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 一个月的集训 Word,visio,matlab操作的熟练 资料查找的迅速 三天三夜一片论文 比赛中的失误:对大纲规划时间过长 对模型的运用不够熟练 对学习新知识的速度有一定的欠缺 对心里状态控制的失误 阅读全文
posted @ 2019-09-23 18:18 RE-TLE 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 来源:https://leetcode-cn.com/problems/minimum-distance-between-bst-nodes/submissions/ 来源:https://leetcode-cn.com/problems/search-in-a-binary-search-tree 阅读全文
posted @ 2019-09-23 18:13 RE-TLE 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 链接:https://www.luogu.org/problem/P1012 题目描述 设有nn个正整数(n≤20)(n≤20),将它们联接成一排,组成一个最大的多位整数。 例如:n=3n=3时,33个整数1313,312312,343343联接成的最大整数为:3433121334331213 又如 阅读全文
posted @ 2019-09-17 19:53 RE-TLE 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/two-sum 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用 阅读全文
posted @ 2019-09-09 23:14 RE-TLE 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 题源:https://leetcode-cn.com/contest/weekly-contest-153/problems/maximum-subarray-sum-with-one-deletion/ 给你一个整数数组,返回它的某个 非空 子数组(连续元素)在执行一次可选的删除操作后,所能得到的 阅读全文
posted @ 2019-09-09 22:28 RE-TLE 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 题源:https://www.cometoj.com/contest/65/problem/B?problem_id=3683 题目描述 胖头鱼在苦恼“沉鱼落雁”是什么好吃的东西,这很显然是因为他成语没背够。 于是他决定开始背成语。胖头鱼身为鱼界大佬,背成语的姿势自然也和常人不一: 他会先将所有要背 阅读全文
posted @ 2019-09-09 22:04 RE-TLE 阅读(228) 评论(0) 推荐(0) 编辑