JianJ
JianJ
全部文章
分类
归档
标签
去牛客网
登录
/
注册
JianJ的博客
全部文章
(共53篇)
题解 | #打印极值点下标#
#include<iostream> using namespace std; const int N = 100; int main(void) { int arr[N]; int n; while(cin >> n) { for(int i = 0;i &...
2024-03-17
0
183
题解 | #Powerful Calculator#
#include<iostream> #include<vector> #include<algorithm> using namespace std; bool comp(vector<int>&A,vector<int>&am...
2024-03-13
0
172
题解 | #最大上升子序列和#
#include <iostream> using namespace std; const int N = 1100; int f[N]; int a[N]; int main() { int n, ans = 0; cin >> n; for...
2024-03-11
0
149
题解 | #最大上升子序列和#
#include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { int num[n]; ...
2024-03-11
0
160
题解 | #字符串内排序#
#include<iostream> #include<algorithm> using namespace std; int main(void) { string s; while(cin >> s) { sort(s.begin(),s.end(...
2024-03-10
0
140
题解 | #xxx定律#
#include<iostream> using namespace std; int main(void) { int n; while(cin >> n) { int res = 0; while(n != 1) { res++; if(n...
2024-03-10
0
191
题解 | #后缀子串排序#
#include<iostream> #include<string> #include<algorithm> using namespace std; string ss[1100]; int main(void) { string s; cin >...
2024-03-10
0
190
题解 | #Digital Roots#
#include<iostream> using namespace std; int getSum(int n) { int res = 0; while(n) { res = res + (n % 10); n /= 10; } return res; } in...
2024-03-09
0
151
题解 | #吃糖果#
#include<iostream> using namespace std; const int N = 20; int arr[N]; int main(void) { int n; cin >> n; arr[0] = 1; arr[1] = 2; fo...
2024-03-09
0
161
题解 | #放苹果#
#include<iostream> using namespace std; const int N = 100; int f[N][N]; int main(void) { int m,n; cin >> m >> n; for(int i = 1...
2024-03-09
0
149
首页
上一页
1
2
3
4
5
6
下一页
末页