
字符串
fpcsong_1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
BestCoder#15-1002
题目链接:http://bestcoder.hdu.edu.cn/contests/contest_showproblem.php?pid=1002&cid=545就是规则复杂的原创 2014-10-25 21:31:08 · 452 阅读 · 0 评论 -
Codeforces Round #279 (Div. 2)C. Hacking Cypher
http://codeforces.com/contest/490/problem/C判断整除的问题#include #include using namespace std;bool flag[100000001];int main(){ int a, b ,d,e; string c; cin>>c; cin>>a>>b; e=0;原创 2014-11-27 20:40:38 · 457 阅读 · 0 评论 -
Codeforces Round #279 (Div. 2)E. Restoring Increasing Sequence
http://codeforces.com/contest/490/problem/E字符串处理,思路很快出来,找出符合要求的最近的字符串,如果不存在输出-1,但是实现起来却有点麻烦了,写了半天,不好意思说这个是水题= =。#include#include#includeusing namespace std;string mtry(string s1,string s2){原创 2014-11-27 20:45:57 · 475 阅读 · 0 评论