博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
FZU 1502 Letter Deletion
阅读量:5858 次
发布时间:2019-06-19

本文共 814 字,大约阅读时间需要 2 分钟。

最长公共子序列。

#pragma comment(linker, "/STACK:1024000000,1024000000")#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const double pi=acos(-1.0),eps=1e-8;void File(){ freopen("D:\\in.txt","r",stdin); freopen("D:\\out.txt","w",stdout);}inline int read(){ char c = getchar(); while(!isdigit(c)) c = getchar(); int x = 0; while(isdigit(c)) { x = x * 10 + c - '0'; c = getchar(); } return x;}const int maxn=1000;char s[maxn],t[maxn];int dp[maxn][maxn];int main(){ while(~scanf("%s%s",s,t)) { memset(dp,0,sizeof dp); int lens=strlen(s),lent=strlen(t),ans=0; for(int i=0;i

 

转载于:https://www.cnblogs.com/zufezzt/p/5740732.html

你可能感兴趣的文章
Ray Kurzweil 预言计算机的智能在 12 年内达人类水平
查看>>
Android 6.0 可以显示设备的安全补丁级别
查看>>
《UNIX网络编程 卷1:套接字联网API(第3版)》——8.15 使用select函数的TCP和UDP回射服务器程序...
查看>>
《Python数据分析与挖掘实战》一第3章 数 据 探 索
查看>>
《Excel高手捷径:一招鲜,吃遍天》一第28招 Excel打开CSV文件为乱码的解决方法...
查看>>
《Python高手之路(第3版)》——2.3 外部库
查看>>
《HTML5 Canvas开发详解》——2.11 内容预告
查看>>
使用PPA在Elementary OS 'Luna'上安装Oracle Java 7
查看>>
LinkedList的局限
查看>>
《HTML5和JavaScript Web应用开发》——1.3 浏览器(即平台)
查看>>
《LoadRunner 12七天速成宝典》—第1章 1.6节第一个性能测试案例
查看>>
《ELK Stack权威指南 》导读
查看>>
gem\ruby 安装失败
查看>>
Syscan360会议胸牌破解揭秘
查看>>
你应该了解的数据分析入门知识
查看>>
数据挖掘与数据化运营实战. 1.2 数据化运营的主要内容
查看>>
《代码整洁之道》—第13章13.5节了解执行模型
查看>>
如何在 Debian 和 Ubuntu 上安装 MariaDB 10
查看>>
《计算机科学概论》—第1章1.2节计算的历史
查看>>
如何在 Antergos/Arch Linux 中使用 iPhone
查看>>