去除最顶层Makefile的-Os/-O2, 替换为-O0 替换include/linux/complier.h中 #if 1 //zjr #define __compiletime_assert(condition, msg, prefix, suffix) BUG_ON(!condition) ...
分类:
系统相关 时间:
2020-06-08 09:25:16
阅读次数:
85
From DFA to KMP algorithm DFA In the theory of computation, a branch of theoretical computer science, a deterministic finite automaton (DFA)—also know ...
分类:
其他好文 时间:
2020-06-05 15:09:25
阅读次数:
63
$suffix = explode('.',$_FILES['hotel_images']['name'])[1];$newImgName = get_rand_str(32).'.'.$suffix;$path = './uploads/'.date('Ymd').'/';if(!file_exi ...
因为edge浏览器虽然是用的谷歌的内核,但是本身还是ie浏览器使用ie浏览器导出的方法就可以解决 export function downloadFile(obj, name, suffix) { //obj是字符流 name是文件名,suffix是文件后缀传递的参数可根据个人情况 if (wind ...
分类:
其他好文 时间:
2020-05-28 10:23:23
阅读次数:
96
题意 "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
ACM-ICPC 2017 Asia Qingdao B. Chenchen, Tangtang and ZengZeng 签到题 I. The Squared Mosquito Coil 打印题,原来区域赛也会出这种题目,无语…… 总结:遇到这种情况,冷静才是最重要的。 J. Suffix 按理来 ...
分类:
其他好文 时间:
2020-04-20 23:22:15
阅读次数:
72
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
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
[TOC] 在谈 AC 自动机之前,我们需要学习一些预备知识,请你先详细阅读本博客的前两部分。 KMP 算法 BF 算法 BF算法,即暴风(Brute Force)算法,是普通的模式匹配算法,不是要匹配字符吗?那我一个一个直接匹配不就好啦。BF算法的思想就是将目标串 S 的第一个字符与模式串 T 的 ...
分类:
其他好文 时间:
2020-04-08 22:23:14
阅读次数:
82
拉两次车,第一次假设最长回文串就在两边 第二次,先使得左右两边判回文,在将剩下的串 在manachar一遍, 比较两种情况取最大值,然后就是输出问题见代码 #include <bits/stdc++.h> using namespace std; const int maxn = 1e6 + 5; ...
分类:
其他好文 时间:
2020-03-31 01:01:15
阅读次数:
71