蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:#include <iostream>#include <cstring>using namespace std;char a[110000];char s[1000010];int main(){ …… 题解列表 2021年01月30日 0 点赞 0 评论 191 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:``` #include using namespace std; int main() { int n; string s,t; cin>>s>>n; while(n-…… 题解列表 2020年07月02日 0 点赞 0 评论 234 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<algorithm> using namespace std; stri…… 题解列表 2021年12月05日 0 点赞 0 评论 274 浏览 评分:0.0
随便写的方法,只关注结果了 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>#include <string>#include <sstream>using name…… 题解列表 2021年11月04日 0 点赞 0 评论 317 浏览 评分:0.0
代码简单,思路清晰 摘要:##### 代码很简单,不懂看注释 ###### dfs版本 最开始想的是dfs,后来发现其实循环就行了 #include using namespace std; …… 题解列表 2024年01月11日 0 点赞 0 评论 118 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:### 解题思路:模拟,枚举每一个得到的字符串,遍历这个字符串,统计连续相同的字符添加进空串中。 ```cpp #include #define x first #define y sec…… 题解列表 2020年10月09日 0 点赞 0 评论 390 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)代码不多,简单操作 摘要:```cpp #include #include #include using namespace std; void fun(string &str) { string s=""; …… 题解列表 2020年10月13日 0 点赞 0 评论 378 浏览 评分:6.0
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码) 摘要:解题思路:用循环...有点绕,递归可能好一点...注意事项:参考代码:#include <iostream> #include <stdio.h> #include <string> #incl…… 题解列表 2018年12月15日 0 点赞 0 评论 697 浏览 评分:6.7
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码) 摘要:# 小白一个,代码有不足的地方希望各位给出建议 参考代码: #include #include using namespace std; int main(…… 题解列表 2020年02月06日 0 点赞 0 评论 594 浏览 评分:9.9
我不是张玉想——奇怪的数列-题解(C++代码) 摘要:## 一、解题思路: 字符串处理:一开始用的别的方法,写到最后搞混了,后来就试了下这种,效果还行,关键点是【字符串和字符可以用‘+’直接连接起来】 ## 二、完整代码 ```cpp #in…… 题解列表 2020年08月21日 0 点赞 0 评论 487 浏览 评分:9.9