粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #最大连续子序列#
#include <iostream> using namespace std; const int N = 10010; int a[N]; int f[N], s[N], e[N]; //f[i]:以第i个数(a[i])结尾时,最大连续子序列的和 int main() { ...
2024-03-13
0
183
题解 | #最大连续子序列#
#include <iostream> using namespace std; const int N=10010; int a[N]; int f[N],s[N],e[N]; //f[i]:以第i个数(a[i])结尾时,最大连续子序列的和 int main() { int ...
2024-03-13
0
174
题解 | #开门人和关门人#
#include <iostream> #include <algorithm> using namespace std; struct stu{ string name; int stime; int etime; }; //按签到时间从小到大排序...
2024-03-12
0
172
题解 | #继续xxx定律#
#include <iostream> using namespace std; int a[510]; int n; void func() { for (int i = 0; i < n; i++) { int t = a[i]; w...
2024-03-10
0
210
题解 | #统计同成绩学生人数#
#include <iostream> using namespace std; const int N=1010; int a[N];//存储成绩 int main() { int n; while(cin>>n&&n){ ...
2024-03-10
0
170
题解 | #又一版 A+B#
#include <iostream> #include <algorithm> using namespace std; //把10进制数x转换为m进制数 void func(long long x, int m) { if (x == 0) cout <&...
2024-03-10
0
173
题解 | #还是A+B#
#include <iostream> using namespace std; bool is_equal(int a,int b,int k){ int t=1; while(t<=k){ t++; int aa=a%10; ...
2024-03-10
0
224
题解 | #xxx定律#
#include <iostream> using namespace std; int steps(int n){ int res=0; while(n!=1){ if(n%2==0) n/=2; else{ n...
2024-03-10
0
172
题解 | #ZOJ#
#include <iostream> #include <vector> using namespace std; int main() { string str; cin>>str; vector<char> z,o,j;...
2024-03-10
0
162
题解 | #A + B#
#include <iostream> #include <sstream> #include <map> using namespace std; map<string, int> m; int get_A(string str) { s...
2024-03-09
0
160
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页