L456
L456
全部文章
分类
归档
标签
去牛客网
登录
/
注册
L456的博客
全部文章
(共33篇)
题解 | #二叉搜索树#
#include <bits/stdc++.h> using namespace std; struct Node{ char c; Node *left; Node *right; }; Node *insert(Node *root,char c) { if(root==...
2024-03-17
0
211
题解 | #寻找大富翁#
#include <bits/stdc++.h> using namespace std; bool cmp(int a,int b) { return a>b; } int main(){ int n,m; while(cin>>n>>m) { ...
2024-03-17
0
156
题解 | #棋盘游戏#
#include <bits/stdc++.h> using namespace std; int a[4][2]={{-1,0},{1,0},{0,-1},{0,1}}; int matrix[8][8],vis[8][8]; int mincost=INT_MAX; int si...
2024-03-16
0
232
题解 | #数字反转#
#include <bits/stdc++.h> using namespace std; string addString(string a,string b) { string res; int carry=0; int i=a.size()-1; int j=b.size...
2024-03-14
0
164
题解 | #进制转换#
#include <bits/stdc++.h> using namespace std; int main(){ string s; while(cin>>s) { double res=0; for(int i=s.length()-1;i>=2;i...
2024-03-13
0
143
题解 | #浮点数加法#
#include <bits/stdc++.h> using namespace std; int flag=0; string addString1(string a,string b)//等长字符串加法,小数 { string res; int carry=0; for...
2024-03-13
1
195
题解 | #字符串排序#
#include <bits/stdc++.h> using namespace std; bool cmp(char a,char b) { //大写化为小写,再比较,满足题目所要求的不区分大小写 if(a>='A'&&a<='Z') a=a-'A'...
2024-03-12
0
202
题解 | #采药#类背包问题
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; int t[100],v[100]; while(cin>>n>>m) { int dp[m+1][n+1]; ...
2024-03-12
0
172
题解 | #合唱队形#
#include <bits/stdc++.h> using namespace std; int up[100],down[100]; int main(){ int n; int h[100]; while(cin>>n) { //for(int i=1;i&...
2024-03-12
0
177
题解 | #点菜问题#
#include <bits/stdc++.h> using namespace std; int main(){ int c,n; int v[100],p[100]; while(cin>>c>>n) { int dp[n+1][c+1];//出...
2024-03-11
0
203
首页
上一页
1
2
3
4
下一页
末页