暑假刷题第20天--8/3

B-序列的与和_2023河南萌新联赛第(四)场:河南大学 (nowcoder.com)(dfs)

#include<iostream>
#include<string>
using namespace std;
#define ull unsigned long long
int n,k;
ull a[21];
ull ans=0;
int check(ull sum){int q=0;while(sum){q++;sum&=(sum-1);}return q;
}
void dfs(int x,ull sum){if(check(sum)==k)ans++;for(int i=x+1;i<=n;i++){dfs(i,sum&a[i]);}
}
int main(){cin>>n>>k;for(int i=1;i<=n;i++){cin>>a[i];}for(int i=1;i<=n;i++){dfs(i,a[i]);}cout<<ans<<endl;
}

D-幂运算_2023河南萌新联赛第(四)场:河南大学 (nowcoder.com)(快速幂类似)

#include<iostream>
#include<string>
using namespace std;
long long qowe(long long a,long long n,long long p){//指数幂long long ans=2;while(n){ans=(long long)ans*ans%p;a=(long long)a*a%p;n=n-1;}return ans;
}
int main(){int n,k;cin>>n>>k;cout<<qowe(2,n,k);
}

P4554 小明的游戏 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)(双端队列bfs--模板)

#include<iostream>
#include<string>
#include<vector>
#include<deque>
#include<cstring>
using namespace std;
int n,m;
struct node{int xx,yy,step;
};
string s[505];
int x1,y1,a,b;
bool vis[505][505];
int cnt[4][2]={{1,0},{0,1},{-1,0},{0,-1}};
int in(int x,int y){if(x<0||y<0||x>=n||y>=m)return 0;return 1;
}
int bfs(int x,int y){node c;c.xx=x,c.yy=y,c.step=0;deque<node>q;q.push_front(c);while(!q.empty()){node temp=q.front();q.pop_front();node now;vis[temp.xx][temp.yy]=true;if(temp.xx==a&&temp.yy==b)return temp.step;for(int i=0;i<4;i++){now.xx=temp.xx+cnt[i][0];now.yy=temp.yy+cnt[i][1];if(!vis[now.xx][now.yy]&&in(now.xx,now.yy)&&s[temp.xx][temp.yy]==s[now.xx][now.yy]){now.step=temp.step;q.push_front(now);}else if(!vis[now.xx][now.yy]&&in(now.xx,now.yy)&&s[temp.xx][temp.yy]!=s[now.xx][now.yy]){now.step=temp.step+1;q.push_back(now);}}}return 0;
}
int main(){while(cin>>n>>m&&(n||m)){for(int i=0;i<n;i++){cin>>s[i];}cin>>x1>>y1>>a>>b;memset(vis,0,sizeof(vis));cout<<bfs(x1,y1)<<"\n";}
}

Labyrinth - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)(双端队列bfs)

#include<iostream>
#include<string>
#include<vector>
#include<deque>
#include<cstring>
#include<queue>
using namespace std;
const int N=2005;
int n,m;
struct node{int xx,yy,step1,step2;
};
string s[N];
int x1,y1,a,b;
bool vis[N][N];
int cnt[4][2]={{1,0},{-1,0},{0,-1},{0,1}};
int ans=1;
int in(int x,int y){if(x<0||y<0||x>=n||y>=m)return 0;return 1;
}
int bfs(int x,int y){node c;c.xx=x,c.yy=y,c.step1=0,c.step2=0;deque<node>q;q.push_front(c);vis[x][y]=true;while(!q.empty()){node temp=q.front();q.pop_front();node now;for(int i=0;i<4;i++){now.xx=temp.xx+cnt[i][0];now.yy=temp.yy+cnt[i][1];if(!in(now.xx,now.yy)||vis[now.xx][now.yy]||s[now.xx][now.yy]=='*')continue;if(i==0||i==1){now.step1=temp.step1;now.step2=temp.step2;q.push_front(now);vis[now.xx][now.yy]=true;ans++;}else if(i==2){if(temp.step1>=a)continue;now.step1=temp.step1+1;now.step2=temp.step2;q.push_back(now);vis[now.xx][now.yy]=true;ans++;}else if(i==3){if(temp.step2>=b)continue;now.step1=temp.step1;now.step2=temp.step2+1;q.push_back(now);vis[now.xx][now.yy]=true;ans++;}}}return 0;
}
int main(){cin>>n>>m;cin>>x1>>y1>>a>>b;for(int i=0;i<n;i++){cin>>s[i];}bfs(x1-1,y1-1);cout<<ans<<"\n";
}

175. 电路维修 - AcWing题库(双端队列bfs)

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <deque>
using namespace std;
typedef pair<int, int > PII;
int n, m;
const int N = 510;
char g[N][N];
int d[N][N];
inline bool check(int x, int y)
{if(x >= 0 && x <= n && y >= 0 && y <= m) return true;return false;
}
inline int bfs()
{memset(d, 0x3f, sizeof d);deque<PII> dq;dq.push_front({0, 0});d[0][0] = 0;int moved[4][2] = {{-1, -1},{-1, 1},{1, 1},{1, -1}};int movei[4][2] = {{-1, -1},{-1, 0},{0, 0},{0, -1},};char cp[] = "\\/\\/";while(dq.size()){auto t = dq.front();dq.pop_front();int x = t.first, y = t.second;for(int i = 0; i < 4; i ++){int a = x + moved[i][0], b = y + moved[i][1];if(check(a, b)){int j = x + movei[i][0], k = y + movei[i][1];int w;if(g[j][k] != cp[i]) w = 1;else w = 0;if(d[a][b] > d[x][y] + w){d[a][b] = d[x][y] + w;if(w) dq.push_back({a, b});else dq.push_front({a, b});}}}}if(d[n][m] == 0x3f3f3f3f) return -1;else return d[n][m];
}inline void solve()
{cin >> n >> m;for(int i = 0; i < n; i ++) cin >> g[i];int res = bfs();if(res == -1) puts("NO SOLUTION");else cout << res << endl;
}
int main()
{int t;cin >> t;while( t -- ) solve();return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/22196.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

物联网工程开发实施,应该怎么做?

我这里刚好有嵌入式、单片机、plc的资料需要可以私我或在评论区扣个6 物联网工程的概念 物联网工程是研究物联网系统的规划、设计、实施、管理与维护的工程科学&#xff0c;要求物联网工程技术人员根 据既定的目标&#xff0c;依照国家、行业或企业规范&#xff0c;制定物联网…

Delphi Architect Crack,部署支持Swagger

Delphi Architect Crack,部署支持Swagger 单一代码库-用更少的编码工作为所有主要平台创建应用程序。写一次&#xff0c;到处编译。 Windows-使用最新的用户界面控件、WinRT API和HighDPI相关功能&#xff0c;使Windows的VCL应用程序现代化。 远程桌面-使用改进的VCL和IDE远程桌…

图的深度、广度优先探索(数据结构)

深度&#xff1a; #include <stdio.h> #include <stdlib.h> #define MAX 20typedef struct ANode {int adjver,len;struct ANode*next; } ArcNode;typedef struct VNode {int data;ArcNode*firstarc; } VertexNode;typedef struct {VertexNode vers[MAX1];int ver…

使用Nmap的简单教程

Nmap是一个开源的网络探测和安全审核工具。它可以用于扫描网络上的主机和服务&#xff0c;识别开放的端口、操作系统信息等。 1、 下载和安装Nmap&#xff1a;从Nmap官方网站&#xff08;https://nmap.org/&#xff09;下载适用于Windows的Nmap安装程序。运行安装程序并按照指…

763. 划分字母区间

763. 划分字母区间 给你一个字符串 s 。我们要把这个字符串划分为尽可能多的片段&#xff0c;同一字母最多出现在一个片段中。 注意&#xff0c;划分结果需要满足&#xff1a;将所有划分结果按顺序连接&#xff0c;得到的字符串仍然是 s 。 返回一个表示每个字符串片段的长度…

http请求头信息说明

协议头 说明 示例 状态 Accept 可接受的响应内容类型&#xff08;Content-Types&#xff09;。 Accept: text/plain 固定 Accept-Charset 可接受的字符集 Accept-Charset: utf-8 固定 Accept-Encoding 可接受的响应内容的编码方式。 Accept-Encoding: gzip, defl…

R语言glmnet包详解:横截面数据建模

R语言glmnet包详解:横截面数据建模 glmnet适用的模型glmnet建模补充glmnet适用的模型 glmnet程序包即适用于线性模型,也适用于添加惩罚项项的线性模型。如果数据中的变量个数大于样本量并且想用线性模型解决问题,那么glmnet再合适不过了! 根据glmnet函数中参数family的指定…

【C++进阶知识】04 - 函数默认实参、默认初始化、initializer_list

1. 函数默认实参 默认实参需要注意以下几点&#xff1a; &#xff08;1&#xff09;函数默认实参的赋值应从右往左&#xff0c;否则编译报错&#xff0c;因为参数入栈应该从右往左。 void f(int, int, int 1); void f(int, int 2, int); void f(int 3, int, int);&#x…

chrome插件开发实例02-使用content_scripts对用户浏览页面操作

目录 引言 chrome插件 插件演示 源代码 manifest.json content_scripts.js css设置(放在css文件夹下)<

【二等奖方案】Web攻击检测与分类识别赛题「机器学习」团队解题思路

2022 CCF BDCI 数字安全公开赛 赛题「Web攻击检测与分类识别」 地址&#xff1a;http://go.datafountain.cn/4Zj 机器学习战队 获奖方案 团队简介 我们团队由五名成员组成&#xff0c;对机器学习都非常感兴趣&#xff0c;同时在机器学习领域有着丰富的实战经验&#xff0c…

C# wpf程序

--App.xaml namespace WpfMyproject { /// <summary> /// App.xaml 的交互逻辑 /// </summary> public partial class App : PrismApplication { protected override Window CreateShell() { return Container.R…

2023年下半年软考报名时间及汇总(附报名流程图)

2023下半年软考考试时间为11月4、5日&#xff0c;2023年下半年软考全国报名平台入口8月14日开通&#xff0c;由此可知各地报名时间将会从8月14日起陆续开始。千万别错过报名了哦&#xff01;这几天要多关注&#xff01; 2023年下半年软考考试安排各科目考试时间已定&#xff0…

无人机机巢有哪些,无人机机场/机场的主要分类

随着无人机技术的飞速发展&#xff0c;无人机已经渗透到了物流、农业、救援、公共安全等多个领域。而为了使这些无人机能更加高效、灵活地运行&#xff0c;一个新的概念应运而生&#xff0c;那就是无人机机巢&#xff08;UAV Nest&#xff09;。复亚智能无人机机巢是一种供无人…

Android Studio新版本logcat过滤说明

按包名过滤 //输入package:&#xff08;输入一个p就会有提示的&#xff09; &#xff0c;后面加上包名 比如: package:com.xal.runcontrol package:包名可以完整或者输部分包名即可 package:包名需要输完整准确 package~:正则表达式过滤 不了解正则表达式的可以参考&#…

leetcode做题笔记47

给定一个可包含重复数字的序列 nums &#xff0c;按任意顺序 返回所有不重复的全排列。 思路一&#xff1a;回溯 int* Source NULL; int Source_Size 0;int** Result NULL; int* Retcolsizes NULL; int Result_Index 0;int* Path NULL; int Path_Index 0;bool* Used …

vue中显示在页面顶部的进度条插件——NProgress

我们在一些网站中经常见到导航栏上方的进度条显示&#xff0c;大家仔细观察&#xff0c;其实csnd中也有类似的效果&#xff0c;如下图显示效果&#xff0c;我们现在就来一起看看这个功能需求是怎么实现的。 一、功能需求 首先&#xff0c;实现这个功能其实不难&#xff0c;说实…

ElementUI el-table 鼠标滚动失灵的问题及解决办法

Bug&#xff1a;ElementUI el-table 鼠标滚轮下滑动失灵的情况 我测出来的这个问题条件很苛刻&#xff0c;需要达到以下几个条件才会触发&#xff1a; 1.element plus&#xff08;其他版本没试&#xff09; 2.el-table-column组件有fixed属性时 3.template标签中有el-butto…

2023最新版本Activiti7系列-监听器讲解

监听器 1.执行监听器 在流程实例执行过程中触发某个事件时&#xff0c;Activiti提供的执行监听器可以捕获该事件并执行相应的外部的Java代码&#xff0c;或者对指定的表达式求值。在流程实例执行过程中触发某个事件时&#xff0c;Activiti提供的执行监听器可以捕获该事件并执行…

uniapp学习

1 简单的表单校验 <!--uniapp:参考模板和字段生成页面 字段stuNumber 输入框 学号stuName 输入框 学生姓名teacher 输入框 辅导员submitDate 日期选择 填报日期morningTemperature 输入框&#xff08;数字校验一位小数&#xff09; 早上体温noonTemperature 输入框&…

8.4作业

用信号量的方式实现打印1234567后打印7654321循环交替打印。 #include<stdio.h> #include<string.h> #include<stdlib.h> #include<head.h> char buf[]"1234567"; sem_t sem; void *callBack1(void *arg) {int i0;int sstrlen(buf)-1;while…