首页
C++语法
信息学奥赛算法
C++编程题解
CSP初赛
大数据技术
python语法
文章归档
关于页面
1
【算法】完全背包
2
【题解】潜水员
3
【算法】二维费用背包问题
4
【C++基础语法】memset、fill 用法
5
【题解】动规-数塔问题
Allen Best
累计撰写
192
篇文章
累计创建
2
个标签
累计收到
87
条评论
栏目
首页
C++语法
信息学奥赛算法
C++编程题解
CSP初赛
大数据技术
python语法
文章归档
关于页面
搜索
标签搜索
Linux,Hadoop
计算机基础知识
以下是
C++编程题解
相关的文章
2024-07-06
【题解】潜水员
三维数组#include <bits/stdc++.h>using namespace std;#define N 1005int m, n, k, f[N][25][80];//f[i][j][k]: 前i个气缸中选气缸凑j升氧气k升氮气的最少重量 int v1[N], v2[N],
2024-07-06
30 阅读
0 评论
2 点赞
C++编程题解
2024-05-25
【题解】1277:【例9.21】方格取数
#include <bits/stdc++.h>using namespace std;#define N 11int dp[N][N][N][N], a[N][N];//dp[i][j][k][l]:第一趟从(1,1)走到(i,j),第二趟从(1,1)走到(k,l)取到的数字加和最大的
2024-05-25
14 阅读
0 评论
1 点赞
C++编程题解
2024-05-05
【题解】酒店
#include <bits/stdc++.h>using namespace std;int main(){int n,m;cin>>n>>m;if(n*2<=m) cout<<0;//每个人住两个房间还不满else cout<<4
2024-05-05
114 阅读
0 评论
0 点赞
C++编程题解
2024-05-05
【题解】方格
#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=2005,A=15;int n,m,a[N][N],c[A];ll ans;int main(){cin>>n>&g
2024-05-05
32 阅读
0 评论
1 点赞
C++编程题解
2024-05-05
【题解】新 1215 迷宫
#include<bits/stdc++.h>using namespace std;long long n,xx[6]={0,1,0,-1},yy[6]={1,0,-1,0},h=0,ha,la,hb,lb,k,t;string a[666];bool f[666][666];void
2024-05-05
38 阅读
0 评论
0 点赞
C++编程题解
2024-05-05
【题解】迷宫的所有路径
#include<bits/stdc++.h>using namespace std;long long n,xx[6]={0,1,0,-1},yy[6]={1,0,-1,0},ax[5000],by[5000],k=0,h=0;bool f[66][66];void dfs(int x
2024-05-05
43 阅读
0 评论
1 点赞
C++编程题解
2024-04-27
【题解】【例8.2】细胞
#include<bits/stdc++.h> #define N 1001int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};using namespace std;int n,m;char g[N][N];struct node{ int x;
2024-04-27
96 阅读
0 评论
0 点赞
C++编程题解
2024-04-20
【题解】最短路径
#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define N 101using namespace std;int w[N][N],dis[N],vis[N]; //w是边的权重 dis[]从起点到v点的最短路径int n,s;void D
2024-04-20
80 阅读
0 评论
1 点赞
C++编程题解
2024-04-06
【题解】1215:迷宫
#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#define N 101using namespace std;char ch;int n,xa,ya,xb,yb
2024-04-06
117 阅读
0 评论
1 点赞
C++编程题解
2024-04-06
【题解】信使
#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define N 1001using namespace std;int g[N][N]; int main(){int n,m,x,y,w;cin>>n>>m;memse
2024-04-06
25 阅读
0 评论
0 点赞
C++编程题解
1
2
3
4
5
6
7
8
9
10