粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #Primary Arithmetic#
#include <iostream> using namespace std; int main() { string x, y; while (cin >> x >> y) { if (x == "0" ...
2024-02-16
0
185
题解 | #子串计算#
#include <iostream> #include <cstring> #include <map> using namespace std; int main() { string str; cin>>str; map...
2024-02-16
0
208
题解 | #整数奇偶排序#
#include <iostream> #include <algorithm> #include <vector> using namespace std; int a[10]; int main() { while(cin>>a[0]){...
2024-02-16
0
163
题解 | #点菜问题#
#include <iostream> using namespace std; const int N = 110; int cost[N], score[N]; int f[N][1010]; int main() { int c, n; while (cin &...
2024-02-15
0
162
题解 | #最大子矩阵#
#include <iostream> using namespace std; const int N=110; int a[N][N]; int s[N][N]; int main() { int n,max=-128; cin>>n; for(...
2024-02-14
0
140
题解 | #最大子矩阵#
#include <iostream> using namespace std; const int N=110; int a[N][N]; int s[N][N]; int main() { int n,max=-128; cin>>n; for(...
2024-02-14
0
185
题解 | #放苹果#
#include <iostream> using namespace std; int dfs(int u,int m,int n,int last){ if(u==n){ if(m==0) return 1; else return 0; ...
2024-02-09
0
166
题解 | #学分绩点#
#include <iostream> using namespace std; const int N=10; int a[N],grade[N]; int main() { int n; cin>>n; for(int i=0;i<n;i+...
2024-02-08
0
191
题解 | #神奇的口袋#
#include <iostream> using namespace std; const int N=30; int a[N]; bool vis[N]; int dfs(int n,int sum,int last){ if(sum>=40){ i...
2024-02-08
0
134
题解 | #首字母大写#
#include <iostream> using namespace std; int main() { string str; getline(cin,str); string res; for(int i=0;i<str.size();i++...
2024-02-07
0
186
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页