粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #Powerful Calculator#
#include <iostream> #include <vector> using namespace std; void print(vector<int> &res){ for(int i=res.size()-1;i>=0;i--)...
2024-03-24
0
216
题解 | #Coincidence#
#include <iostream> #include <cstring> using namespace std; const int N=110; int f[N][N];//f[i][j]:a[1]~a[i]和b[1]~b[j]的最长公共子序列长度 char a[N...
2024-03-23
0
205
题解 | #最小面积子矩阵#
#include <iostream> using namespace std; const int N=110; int a[N][N]; int f[N][N];//f[i][j]:从a[1][1]~a[i][j]的元素值之和 int main() { int n,m,k;...
2024-03-23
0
237
题解 | #质因数的个数#
#include <cmath> #include <iostream> #include <algorithm> using namespace std; int main() { int n; while(cin>>n){ ...
2024-03-22
0
157
题解 | #进制转换2#
#include <iostream> #include <algorithm> using namespace std; //m进制转换为10进制数 long long ConvertToTen(int m,string x){ long long res=0; ...
2024-03-20
0
234
题解 | #二进制数#
#include <iostream> #include <vector> using namespace std; void func(int n,vector<int> &res){ while(n){ res.push_ba...
2024-03-20
0
144
题解 | #对称平方数1#
#include <iostream> using namespace std; int reverse(int x){ int res=0; while(x){ res=10*res+x%10; x/=10; } ret...
2024-03-20
0
162
题解 | #对称平方数1#
#include <iostream> using namespace std; const int N=65540; int a[N]; bool is_balance(int t){ int index=0; while(t){ a[index++]...
2024-03-20
0
146
题解 | #反序数#
#include <iostream> using namespace std; int reverse(int x){ int res=0; while(x){ res=10*res+x%10; x/=10; } ret...
2024-03-20
0
188
题解 | #还是畅通工程#
#include <iostream> #include <algorithm> using namespace std; const int N=5000; int p[N]; struct Edge{ int a,b,w; bool operator&...
2024-03-14
0
190
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页