既原又崩
既原又崩
全部文章
分类
题解(18)
归档
标签
去牛客网
登录
/
注册
欢迎来到我的博客!
原神不好玩
全部文章
(共14篇)
题解|#2024牛客寒假算法基础集训营1#
B、关鸡 只要将所有火的位置记录下来,然后单独判断火在(2,0)这个特殊位置的情况,答案只有0 1 2 3 AC代码奉上 #include <iostream> #include <cstring> #include <algorithm> #include &l...
C++
2024-02-04
1
261
题解 | #小美的子序列#
根据题意这道题需要注意的是从每行中找出一个字符(符合meituan的子字符串)组成meituan就可以了 #include <bits/stdc++.h> using namespace std ; typedef long long ll ; const ll N = 1005 ; ...
C++
2023-09-20
0
927
题解 | #小美种果树#
根据题意 只要搞一个变量记录天数 每两天施肥一次 #include <bits/stdc++.h> using namespace std ; typedef long long ll ; void solve() { ll x , y , z , t = 0 , cd = 2...
C++
2023-09-20
0
337
题解 | #B-凌波微步#
set容器符合题意 set容器特点 自动排序 删除重复 #include <iostream> using namespace std; #include <set> void solve() { int x; cin >> x; set...
stl
2023-09-19
0
256
题解 | #吐泡泡#
使用stack容器 #include <iostream> using namespace std; #include <stack> #include <string> void solve() { string s; stack<cha...
C++
stl
2023-09-19
0
224
题解 | #好串#
根据题目的意思只要在字符串中不断取出ab直到取空 就是 Good 否则是 Bad #include <iostream> using namespace std; #include <string> void solve() { string s; cin ...
C++
2023-09-19
0
268
题解 | #拼数#
这道题需要sort函数的自定义排序方法 和 使用vector和string容器 #include <iostream> using namespace std; #include <vector> #include <string> #include <al...
stl
2023-09-19
0
239
题解 | #老子的全排列呢#
使用vector容器和next_permutation()全排列函数 #include <iostream> using namespace std; #include <vector> #include <algorithm> typedef long long...
C++
2023-09-19
0
298
题解|#水题再次来袭:明天星期几?#
根据题意就是输出明天是星期几,唯一要注意的一点是周7的下一天是周一 c++ java python #include <iostream> using namespace std; int main() { int x; cin >> x; ...
C++
Java
Python3
2023-09-19
0
405
题解 | #这是一道签到题#
基本语法 考验字符串输出与换行 c++ java python #include <bits/stdc++.h> using namespace std ; signed main() { cout << "zhe" << endl ; ...
C++
Java
Python3
2023-09-19
0
472
首页
上一页
1
2
下一页
末页