目录 1.旋转字符串 2.合并k个已排序的链表 3.滑雪 1.旋转字符串 链接https://www.nowcoder.com/practice/80b6bb8797644c83bc50ac761b72981c?tpId=196&tqId=37172&ru=/exam/oj 如果 A 字符串能够旋转之后得到 B 字符串的话,在 A 字符串倍增之后的新串中,⼀定是可以
目录 1.小易的升级之路 2.礼物的最大价值 3.对称之美 1.小易的升级之路 链接 模拟就行,唯一可能是难点得就是gcd(最大公约数) #include <iostream>using namespace std;#define int long longconst int N = 1e5 + 10;int arr[N];int gcd(int a, in
[编程题]小易的升级之路 题目链接:小易的升级之路__牛客网 思路: 按题目写即可 注意辗转相除法。 AC code: #include<iostream>using namespace std;int gcd(int a, int b){return b ? gcd(b, a % b) : a;}int main() {int n, a;while (scanf("%d%
QR6 字符串替换 题目链接:字符串替换_牛客题霸_牛客网 (nowcoder.com) 思路:简单的字符串操作。 AC code: class StringFormat {public:string formatString(string A, int n, vector<char> arg, int m) {string ans;int pos = 0;for(int i =