2024年8月13日
摘要: 1 前缀和练习 1)跳楼机人数安排 题目 点击查看代码 中文解释#include <bits/stdc++.h> using namespace std; #define int long long #define dbg(x) cout << #x << '=' << x << endl cons 阅读全文
posted @ 2024-08-13 16:25 Hoshino1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1 广搜板子 int bfs(int sx,int sy) { q.push((Pos){sx,sy}); //起点加入队列 vis[sx][sy]=true; //标记 while(!q.empty()) { x=q.front().x; y=q.front().y; //获取起始坐标 q.pop 阅读全文
posted @ 2024-08-13 10:13 Hoshino1 阅读(4) 评论(0) 推荐(0) 编辑