码迷,mamicode.com
首页 >  
搜索关键字:suffix    ( 387个结果
edge浏览器导出execl只能选中.txt格式
因为edge浏览器虽然是用的谷歌的内核,但是本身还是ie浏览器使用ie浏览器导出的方法就可以解决 export function downloadFile(obj, name, suffix) { //obj是字符流 name是文件名,suffix是文件后缀传递的参数可根据个人情况 if (wind ...
分类:其他好文   时间:2020-05-28 10:23:23    阅读次数:96
codechef Suffix Palindromes
题意 "codechef" 做法 令$f_i$为长度为$i$的合法个数 $$f_i= f_{i 1}\times s f_{\left\lceil\frac{i}{2}\right\rceil}$$ ...
分类:其他好文   时间:2020-05-02 17:24:28    阅读次数:56
真题演练2
ACM-ICPC 2017 Asia Qingdao B. Chenchen, Tangtang and ZengZeng 签到题 I. The Squared Mosquito Coil 打印题,原来区域赛也会出这种题目,无语…… 总结:遇到这种情况,冷静才是最重要的。 J. Suffix 按理来 ...
分类:其他好文   时间:2020-04-20 23:22:15    阅读次数:72
Codeforces Global Round 7 D2. Prefix-Suffix Palindrome (Hard version)(Manacher算法+输出回文字符串)
This is the hard version of the problem. The difference is the constraint on the sum of lengths of strings and the number of test cases. You can make ...
分类:编程语言   时间:2020-04-18 14:10:40    阅读次数:87
go写一个简单的文件修改监听
logger文件 package src import ( "fmt" "os" "path/filepath" "strings" "sync" "time" ) type File struct { sync.RWMutex // 文件名 fileName string suffix strin ...
分类:其他好文   时间:2020-04-17 11:03:24    阅读次数:101
1326D Prefix-Suffix Palindrome (Hard version) (manacher)
拉两次车,第一次假设最长回文串就在两边 第二次,先使得左右两边判回文,在将剩下的串 在manachar一遍, 比较两种情况取最大值,然后就是输出问题见代码 #include <bits/stdc++.h> using namespace std; const int maxn = 1e6 + 5; ...
分类:其他好文   时间:2020-03-31 01:01:15    阅读次数:71
python 下载图片
def down_load_img(imgUrl,imgName=''): if not imgName: imgName = int(time.time())+random.randint(0,999999) file_suffix = os.path.splitext(imgUrl)[1] fi ...
分类:编程语言   时间:2020-03-26 21:31:57    阅读次数:75
Codeforces Global Round 7 D2. Prefix-Suffix Palindrome (Hard version) -- manacher
D2. Prefix Suffix Palindrome (Hard version) "题目链接" manacher做法 ...
分类:其他好文   时间:2020-03-26 19:47:42    阅读次数:88
Prefix-Suffix Palindrome (Hard version) (Manacher)
题目: 给你一个字符串,让你找一个最大回文串,这个回文串由该字符串的前缀和后缀一起组成 思路: 先处理字符串的两端直到两端不匹配为止,然后对中间的字符串跑一遍Manacher算法,然后 找出起始点为1或终止点为s.size()的最大回文串输出(这样才能保证满足前缀或后缀的条件),再分别输出即可 链接 ...
分类:其他好文   时间:2020-03-23 20:29:32    阅读次数:73
D. Prefix-Suffix Palindrome (马拉车)
题目:传送门 题意:给你字符串 s ,问长度最大的字符串 t = a + b 是什么,其中,t 是回文串, a 是字符串 s 的前缀, b 是字符串 s 的后缀。 思路: 我们先把能构成回文的,前缀和后缀取出来,然后对剩下的字符串,求,最长的前缀回文,最长后缀回文,取两者最大即可。 #include ...
分类:其他好文   时间:2020-03-22 17:54:43    阅读次数:64
387条   上一页 1 2 3 4 5 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!