清溪行
清溪行
全部文章
分类
题解(17)
归档
标签
去牛客网
登录
/
注册
清溪行的博客
全部文章
(共17篇)
题解 | #输入n个整数,输出其中最小的k个#
#include <bits/stdc++.h> using namespace std; int main(){ int m,n,p; while(cin>>m>>n){ multiset<int> ms;...
C++
2022-01-15
0
386
题解 | #字符串加解密#
#include <bits/stdc++.h> using namespace std; int numb1(char n){ if(n=='9') return '0'; else return n+1; } int numb2(char n){ if(n...
C++
2022-01-15
0
313
题解 | #在字符串中找出连续最长的数字串#
#include <bits/stdc++.h> using namespace std; int isstr(string s){ for(int i=0;i<s.size();++i){ if(!isdigit(s[i])) return 0; ...
C++
2022-01-15
0
430
题解 | #查找两个字符串a,b中的最长公共子串#
#include <bits/stdc++.h> using namespace std; int main(){ string m,n; while(cin>>m>>n){ if(m.size()>n.size()) sw...
C++
2022-01-15
0
354
题解 | #求小球落地5次后所经历的路程和第5次反弹的高度#
#include <bits/stdc++.h> using namespace std; int main(){ int m; while(cin>>m){ double sum=m,h=m; for(int i=0;i&l...
C++
2022-01-15
0
317
题解 | #字符串加密#
#include <bits/stdc++.h> using namespace std; int main(){ string m,n; while(cin>>m>>n){ string t; t+=...
C++
2022-01-15
0
325
题解 | #非递减序列#
#include <bits/stdc++.h> using namespace std; int main(){ int m; stack<int> v; int c=0; while(cin>>m){ if(v...
C++
2022-01-14
0
423
题解 | #矩阵乘法#
#include <bits/stdc++.h> using namespace std; int main(){ int m,n,k; int v1[100][100]; int v2[100][100]; while(cin>...
C++
2022-01-13
0
422
题解 | #二维数组操作#
#include <bits/stdc++.h> using namespace std; int main(){ int m,n,x,y; int x1,y1,x2,y2; int l,r; while(cin>>m&g...
C++
2022-01-13
0
306
题解 | #最长回文子串#
#include <bits/stdc++.h> using namespace std; int pd(string s){ for(int i=0,j=s.size()-1;i<=j;++i,--j){ if(s[i]!=s[j]) return 0...
C++
2022-01-13
0
358
首页
上一页
1
2
下一页
末页