笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #字母统计#
#include <iostream> using namespace std; int main() { string s; while(getline(cin,s)){ int arr[200]={0}; for(int i =0;i...
2024-03-08
0
155
题解 | #统计字符#
#include <iostream> using namespace std; int main() { string s1,s2; while(getline(cin,s1)){ if(s1 == "#")return 0; ...
2024-03-08
0
184
题解 | #简单密码#
#include <bits/stdc++.h> using namespace std; bool isEngChar(char c) { if (c <= 'Z' && c >= 'A')return true; return false...
2024-03-08
0
198
题解 | #密码翻译#
#include <bits/stdc++.h> using namespace std; bool isEngChar(char c){ if(c<='Z' && c>='A')return true; else if(c<='z' ...
2024-03-08
0
186
题解 | #特殊排序#
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ int temp; vector<int>v; ...
2024-03-07
0
155
题解 | #点菜问题#
#include <bits/stdc++.h> using namespace std; int main() { int totalWeight, type; while (cin >> totalWeight >> type) { ...
2024-03-07
2
252
题解 | #最大上升子序列和#
#include <bits/stdc++.h> using namespace std; int main() { int n;cin >> n; int arr[n]; int dp[n]; for (int i = 0; i < ...
2024-03-06
0
195
题解 | #拦截导弹#
#include <bits/stdc++.h> using namespace std; int main() { int n;cin>>n; int arr[n]; int dp[n]; for(int i =0;i<n;i++){...
2024-03-06
0
177
题解 | #最大连续子序列#
#include <algorithm> #include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ if(n==0)retur...
2024-03-06
0
175
题解 | #最大连续子序列#
#include <algorithm> #include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ if(n==0)retur...
2024-03-06
0
197
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页