摘要: 规定一个方向$dir$,满足条件就一直向一个方向搜,不满足则换方向。 偏移数组默认方向优先级为: 右 下 左 上 const int N=110; int dx[]={0,1,0,-1},dy[]={1,0,-1,0}; int a[N][N]; bool vis[N][N]; int n,m; i 阅读全文
posted @ 2021-01-19 11:18 Dazzling! 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 简单模拟 const int N=310; struct Stu { int id; int c,m,e; int sum; bool operator<(const Stu &W) const { if(sum == W.sum) { if(c == W.c) { return id<W.id; 阅读全文
posted @ 2021-01-19 10:38 Dazzling! 阅读(25) 评论(0) 推荐(0) 编辑