随笔分类 -  动规

摘要:http://poj.org/problem?id=3267#include "stdio.h"#include "iostream"#include "string.h"using namespace std;char dict[610][30]; //the cows' dictionarychar seq[310]; //the received messageint dp[310];int min(int a, int b){ return a < b ? a : b;}int main(){ int n, L, 阅读全文
posted @ 2011-08-04 11:59 Firecoder 阅读(133) 评论(0) 推荐(0)