博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1073 - Online Judge
阅读量:5734 次
发布时间:2019-06-18

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

模拟评测机判断答案

 

先判断有没有不一样的

有的话再提取出 有效子列 看看有没有错的

1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 int t; 7 string a,b,sa,sb; 8 char s[5005]; 9 const char p[4][50]={
"Accepted","Presentation Error","Wrong Answer"};10 void getstring(string& a)11 {12 while(gets(s))13 {14 if(!strcmp(s,"START")) break;15 }16 while(1)17 {18 gets(s);19 if(!strcmp(s,"END")) break;20 a+=s;21 a+='\n';22 }23 }24 void getsub(string& a,string& sa)25 {26 int len=a.length();27 for(int i=0;i

 

转载于:https://www.cnblogs.com/nicetomeetu/p/5516057.html

你可能感兴趣的文章
linux时间
查看>>
Spring+Mybatis项目中通过继承AbstractRoutingDataSource实现数据库热切换
查看>>
让Alert弹窗只弹出一次
查看>>
用友软件操作流程(新建年度帐、年度结转步骤)
查看>>
mysql权限管理
查看>>
我的友情链接
查看>>
让你快速上手的Glide4.x教程
查看>>
浮动和清除(闭合)浮动
查看>>
微信小程序注册流程
查看>>
LR录制脚本时IE打不开的原因
查看>>
类的基础
查看>>
微博自动化测试
查看>>
Sublime Text 2.0.2,Build 2221注册码
查看>>
js scroll事件
查看>>
day08 文件操作
查看>>
最长递增子序列 动态规划
查看>>
使用列表
查看>>
原生CSS设置网站主题色—CSS变量赋值
查看>>
概率dp - UVA 11021 Tribles
查看>>
webpack 4.0 中 clean-webpack-plugin 的使用
查看>>