摘要:
1 前缀和练习 1)跳楼机人数安排 题目 点击查看代码 中文解释#include <bits/stdc++.h> using namespace std; #define int long long #define dbg(x) cout << #x << '=' << x << endl cons 阅读全文
摘要:
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 阅读全文