欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 美食 > 牛客_字母收集+添加逗号_C++题解

牛客_字母收集+添加逗号_C++题解

2025/1/23 4:01:26 来源:https://blog.csdn.net/kitesxian/article/details/143922949  浏览:    关键词:牛客_字母收集+添加逗号_C++题解

链接链接2

代码1:

const int N = 510;
char g[N][N];
int n, m;
int dp[N][N];
#include <iostream>
#include <algorithm>
using namespace std;
int main() {cin >> n >> m;for (int i = 1; i <= n; i++) {for (int j = 1; j <= m; j++) {cin >> g[i][j];int t = 0;if (g[i][j] == 'l')t = 4;else if (g[i][j] == 'o')t = 3;else if (g[i][j] == 'v')t = 2;else if (g[i][j] == 'e')t = 1;dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]) + t;}}cout << dp[n][m] << endl;
}

第一次写的时候把g数组定义为了 int g[N][N]; 

代码2:

#include <iostream>
#include <string>
using namespace std;int main() {string s, res;cin >> s;int n = s.size();for (int i = 0; i < n; i++) {res += s[i];if ((n - i - 1) % 3 == 0 && (i != n - 1)) {res += ',';}}cout << res << endl;return 0;
}

 这是一道模拟题,题目中给出一个整数(比如4957121),我们可以作为string读入。res作为结果.

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com