求求offer的土拨鼠很无聊
求求offer的土拨鼠很无聊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求求offer的土拨鼠很无聊的博客
全部文章
(共88篇)
题解 | #对称平方数1#
#include <iostream> using namespace std; int reversem(int x){ int r=0; while(x>0){ r=r*10+x%10; x/=10; } retu...
2023-03-12
0
225
题解 | #反序数#
#include <iostream> using namespace std; int reversem(int x){ int r=0; while(x>0){ r=r*10+x%10; x/=10; } retu...
2023-03-12
0
206
题解 | #abc#
#include <iostream> using namespace std; int combine(int a,int b,int c){ return a*100+b*10+c; } int main() { int a,b,c; for(a=0;a<...
2023-03-12
0
253
题解 | #最小邮票数#
#include <cstdio> #include <iostream> using namespace std; const int maxn=101; int dp[maxn]; int v[maxn]; int maxint=10000; int main() { ...
2023-03-11
0
243
题解 | #采药#
#include <cstdio> #include <iostream> using namespace std; const int maxn=101; const int maxt=1001; int dp[maxn][maxt]; int a[maxn]; int w...
2023-03-11
0
275
题解 | #Coincidence#
#include <iostream> #include <cstring> using namespace std; int main() { string x,y; while(cin>>x>>y){ int m,...
2023-03-11
0
257
题解 | #合唱队形#
#include <iostream> using namespace std; void longestIncrease(int a[],int l,int r){ int n=r-l+1; if(n==0) return ; int d[n];int num=...
2023-03-11
0
343
题解 | #最大连续子序列#
#include <algorithm> #include <iostream> using namespace std; int main() { int k; while(cin>>k && k!=0){ int b[k]; ...
2023-03-11
0
0
题解 | #吃糖果#
#include <iostream> using namespace std; const int maxn=21; int m[maxn]; int main() { m[1]=1; m[2]=2; for(int i=3;i<maxn;i++){ ...
2023-03-11
0
0
题解 | #Jungle Roads#
#include <cstdio> #include <iostream> #include <cstring> #include <string> #include <queue> #include <vector> usin...
2023-03-11
0
279
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页