A1/A2. Gardener and the Capybaras (easy version) 三个字符串,按照顺序连在一起,三个字符串满足第二个字符串大于等于第一个和第三个,或者第二个字符串小于等于第一个和第三个,输出满足情况的三个字符串。 思路:对于…
比赛链接
点击打开链接
官方题解
点击打开链接
Problem A1. Gardener and the Capybaras (easy version)
直接按照题意模拟即可
时间复杂度 ,因为有 的常数,所以可以通过
#include <bits/stdc.h>
using namespace std;
const int N(20010…
Gardener and the Capybaras (easy version)
题目集链接 简单版本就是字符串的长度很小,可以用n2的时间复杂度来算,因为n<100 所以我们可以先枚举a的终点,这时候b的起点就有了,然后我们再枚举b的终点,这时候c的起点…