首页
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-10
【题解】P449 不吉利日期
#include<bits/stdc++.h>using namespace std;int main(){int w,d;cin>>w;for(int i=1;i<=12;i++){if(i==1||i==3||i==5||i==7||i==8||i==10||i==
2023-07-10
94 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】T1333 Blah数集
#include<bits/stdc++.h>using namespace std;int a,n;int q[1000000];void work(int a,int n){ int rear=2; q[1]=a; //a一定是第一个数字 int two=1,
2023-07-10
51 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】P2581 周末舞会
#include<bits/stdc++.h>#define N 10001using namespace std;queue<int>man,f;//创建队列int main(){int n,m,x,mid,fid;cin>>n>>m>>
2023-07-10
39 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】T1251 仙岛求药
#include<bits/stdc++.h>#define N 26using namespace std;int r,c;char a[N][N];bool vis[N][N];int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};struct node
2023-07-10
102 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】【dfs】有多少细胞
#include<bits/stdc++.h>using namespace std;int n,m;int ans;char a[105][105];int dir[4][2]={{-1,0},{0,1},{1,0},{0,-1}} ;void dfs(int x,int y){int
2023-07-10
18 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】P678 【入门】快乐的马里奥
#include<bits/stdc++.h>using namespace std;struct point {int x;int y;};int a[102][102]={0};int n,m;int dx[4]={0,1,0,-1};int dy[4]={1,0,-1,0};que
2023-07-10
74 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】走出迷宫的最少步数
#include<bits/stdc++.h>using namespace std;char a[41][41];int n,m,vis[41][41],ans;int dir[4][2]={{1,0},{0,1},{-1,0},{0,-1}};bool check(int x,int
2023-07-10
12 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】【例42.1】 雇佣兵
#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define N 10001using namespace std;int n,m,x,cf; int main(){cin>>m>>n>>x;cf=n;whi
2023-07-10
159 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】P1536 【bfs】营救巨轮
#include<bits/stdc++.h>using namespace std;struct point {int x;int y;int step;}; int sx,sy,ex,ey,n;char a[1001][1001];//bool vis[1001][1001];int
2023-07-10
109 阅读
0 评论
0 点赞
C++编程题解
2023-07-10
【题解】【bfs】T1249 Lake Counting
#include<bits/stdc++.h>#define N 105using namespace std;//方向数组int d[8][2]={{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}} ;struct point{
2023-07-10
107 阅读
0 评论
0 点赞
C++编程题解
5
6
7
8
9
10
11
12
13
14