• BZOJ#2121. 字符串游戏 [区间dp]


    // powered by c++11
    // by Isaunoya
    #include<bits/stdc++.h>
    #define rep(i , x , y) for(register int i = (x) ; i <= (y) ; ++ i)
    #define Rep(i , x , y) for(register int i = (x) ; i >= (y) ; -- i)
    using namespace std ;
    using db = double ;
    using ll = long long ;
    using uint = unsigned int ;
    #define int long long
    using pii = pair < int , int > ;
    #define ve vector
    #define Tp template
    #define all(v) v.begin() , v.end()
    #define sz(v) ((int)v.size())
    #define pb emplace_back
    #define fir first
    #define sec second
    // the cmin && cmax
    Tp < class T > void cmax(T & x , const T & y) { if(x < y) x = y ; }
    Tp < class T > void cmin(T & x , const T & y) { if(x > y) x = y ; }
    // sort , unique , reverse
    Tp < class T > void sort(ve < T > & v) { sort(all(v)) ; }
    Tp < class T > void unique(ve < T > & v) { sort(all(v)) ; v.erase(unique(all(v)) , v.end()) ; }
    Tp < class T > void reverse(ve < T > & v) { reverse(all(v)) ; }
    const int SZ = 0x191981 ;
    struct FILEIN {
    	~ FILEIN () {} char qwq[SZ] , * S = qwq , * T = qwq , ch ;
    	char GETC() { return (S == T) && (T = (S = qwq) + fread(qwq , 1 , SZ , stdin) , S == T) ? EOF : * S ++ ; }
    	FILEIN & operator >> (char & c) { while(isspace(c = GETC())) ; return * this ; }
    	FILEIN & operator >> (string & s) {
    		while(isspace(ch = GETC())) ; s = ch ;
    		while(! isspace(ch = GETC())) s += ch ; return * this ;
    	}
    	Tp < class T > void read(T & x) {
    		bool sign = 1 ; while((ch = GETC()) < 0x30) if(ch == 0x2d) sign = 0 ;
    		x = (ch ^ 0x30) ; while((ch = GETC()) > 0x2f) x = x * 0xa + (ch ^ 0x30) ;
    		x = sign ? x : -x ;
    	}
    	FILEIN & operator >> (int & x) { return read(x) , * this ; }
    	FILEIN & operator >> (signed & x) { return read(x) , * this ; }
    	FILEIN & operator >> (unsigned & x) { return read(x) , * this ; }
    } in ;
    struct FILEOUT { const static int LIMIT = 0x114514 ;
    	char quq[SZ] , ST[0x114] ; signed sz , O ;
    	~ FILEOUT () { sz = O = 0 ; }
    	void flush() { fwrite(quq , 1 , O , stdout) ; fflush(stdout) ; O = 0 ; }
    	FILEOUT & operator << (char c) { return quq[O ++] = c , * this ; }
    	FILEOUT & operator << (string str) {
    		if(O > LIMIT) flush() ; for(char c : str) quq[O ++] = c ; return * this ;
    	}
    	Tp < class T > void write(T x) {
    		if(O > LIMIT) flush() ; if(x < 0) { quq[O ++] = 0x2d ; x = -x ; }
    		do { ST[++ sz] = x % 0xa ^ 0x30 ; x /= 0xa ; } while(x) ;
    		while(sz) quq[O ++] = ST[sz --] ; return ;
    	}
    	FILEOUT & operator << (int x) { return write(x) , * this ; }
    	FILEOUT & operator << (signed x) { return write(x) , * this ; }
    	FILEOUT & operator << (unsigned x) { return write(x) , * this ; }
    } out ;
    
    const int maxl = 152 ;
    const int maxs = 32 ;
    const int maxp = 22 ;
    int n , m ;
    int len[maxs] , mx = 0 ;
    char s[maxl] , ch[maxs][maxp] ;
    bool f[maxl][maxs][maxp] , c[maxl][maxl] ;
    int ans[maxl] ;
    signed main() {
    #ifdef _WIN64
    	freopen("testdata.in" , "r" , stdin) ;
    #else
    	ios_base :: sync_with_stdio(false) ;
    	cin.tie(nullptr) , cout.tie(nullptr) ;
    #endif
    // code begin.
    	scanf("%s" , s + 1) ;
    	n = strlen(s + 1) ;
    	scanf("%d" , & m) ;
    	for(int i = 1 ; i <= m ; i ++) {
    		scanf("%s" , ch[i] + 1) ;
    		len[i] = strlen(ch[i] + 1) ;
    	}
    	for(int i = 1 ; i <= m ; i ++) {
    		cmax(mx , len[i]) ;
    	}
    	for(int i = n ; i ; i --) {
    		memset(f , 0 , sizeof(f)) ;
    		for(int j = 1 ; j <= m ; j ++)
    			f[i - 1][j][0] = 1 ;
    		for(int j = i ; j <= n ; j ++) {
    			for(int k = 1 ; k <= m ; k ++)
    				for(int l = 1 ; l <= len[k] ; l ++)
    					if(s[j] == ch[k][l])
    						f[j][k][l] |= f[j - 1][k][l - 1] ;
    			for(int qwq = j ; qwq <= n ; qwq ++) 
    				if(c[j][qwq])
    					for(int k = 1 ; k <= m ; k ++)
    						for(int l = 0 ; l <= mx ; l ++)
    							f[qwq][k][l] |= f[j - 1][k][l] ;
    		}
    		for(int j = i ; j <= n ; j ++) {
    			for(int k = 1 ; k <= m ; k ++)
    				if(f[j][k][len[k]])
    					c[i][j] = 1 ;
    		}
    	}
    	for(int i = 1 ; i <= n ; i ++) {
    		ans[i] = ans[i - 1] + 1 ;
    		for(int j = 1 ; j <= i ; j ++)
    			if(c[j][i])
    				cmin(ans[i] , ans[j - 1]) ;
    	}
    	out << ans[n] << '
    ' ;
    	return out.flush() , 0 ;
    // code end.
    }
    
  • 相关阅读:
    C 找到该列最大的前两个数字
    C 寻找和最大的子序列
    C 找出最长的回文子串(不区分大小写)
    C 字符串数组
    C 寻找重复字符并输出他们的位置
    C 寻找0~100的守形数
    C 在外部函数中修改指针变量
    C int转为二进制 再进行与操作
    C 计算阶乘之和
    C 奇偶校验
  • 原文地址:https://www.cnblogs.com/Isaunoya/p/12260214.html
Copyright © 2020-2023  润新知