首页
C++语法
信息学奥赛算法
C++编程题解
CSP初赛
大数据技术
python语法
文章归档
关于页面
1
【算法】完全背包
2
【题解】潜水员
3
【算法】二维费用背包问题
4
【C++基础语法】memset、fill 用法
5
【题解】动规-数塔问题
Allen Best
累计撰写
192
篇文章
累计创建
2
个标签
累计收到
87
条评论
栏目
首页
C++语法
信息学奥赛算法
C++编程题解
CSP初赛
大数据技术
python语法
文章归档
关于页面
搜索
标签搜索
Linux,Hadoop
计算机基础知识
以下是
C++编程题解
相关的文章
2023-07-18
【题解】最短路径问题
#include<bits/stdc++.h>#define INF 0x3f3f3f3fusing namespace std;double dis[101][101];double w[101][3];int n,i,j,k,x,y,m,s,t; int main(){cin>
2023-07-18
50 阅读
0 评论
1 点赞
C++编程题解
2023-07-17
【题解】走迷宫(BFS)
#include<bits/stdc++.h>#define N 101using namespace std;struct node{int x,y,step;}a,nf,nw;//a左上角 nf 队首,nw下一个入队的结点 char maze[N][N];int used[N][N]
2023-07-17
89 阅读
0 评论
1 点赞
C++编程题解
2023-07-15
【题解】n个数取出r个数排列
#include<bits/stdc++.h>using namespace std;int a[10],vis[10];//vis shuzu int n,r;void dfs(int x){//现在处理第x个位置上的数if(x>r){//终点 for(int i =1;i<
2023-07-15
41 阅读
0 评论
0 点赞
C++编程题解
2023-07-15
【题解】n个数字的全排列
2023-07-15
135 阅读
0 评论
0 点赞
C++编程题解
2023-07-15
【题解】01排序
#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define N 10001using namespace std;int n;string a[105];bool rule(string x,string y){int lx=x.size()
2023-07-15
112 阅读
0 评论
1 点赞
C++编程题解
2023-07-15
【题解】 验证子串
#include<bits/stdc++.h>using namespace std;int main(){string s1,s2;getline(cin,s1);getline(cin,s2);if(s1.find(s2)!=-1){cout<<s2<<&qu
2023-07-15
35 阅读
0 评论
0 点赞
C++编程题解
2023-07-15
【题解】字符串中的空格
#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define N 10001using namespace std;string s1[N],s,x;int ans; int main(){int n;cin>>n;getchar(
2023-07-15
38 阅读
0 评论
1 点赞
C++编程题解
2023-07-13
【题解】跳马问题
#include<bits/stdc++.h>using namespace std;int ans=0 ,n;//1.地图数组//int maze[10][10];//2.标记数组int used[10][10];//3.方向数组int fx[8][2]={{-2,1},{-1,2},
2023-07-13
46 阅读
0 评论
0 点赞
C++编程题解
2023-07-13
【题解】迷宫路线问题
#include<bits/stdc++.h>using namespace std;int ans=0 ,n;//1.地图数组int maze[10][10];//2.标记数组int used[10][10];//3.方向数组int fx[8][2]={{-1,-1},{-1,0},{
2023-07-13
34 阅读
0 评论
0 点赞
C++编程题解
2023-07-13
【题解】求A-B字符串
#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define N 10001using namespace std;string s1,s2,x;int main(){s1="abcdedfg";s2=s1.substr(2
2023-07-13
66 阅读
0 评论
1 点赞
C++编程题解
5
6
7
8
9
10
11
12
13
14