摘要: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,
阅读全文