摘要: #include<iostream> #include<queue> #include<cstring> using namespace std; char data[25][25]; bool visit[25][25]; int r,c,a,b,result; struct Node{ int 阅读全文
posted @ 2021-11-25 18:01 智人心 阅读(41) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; #include<algorithm> #include<cstring> int main(){ char data[55]; while(scanf("%s",data)==1&&strcmp(data,"#")!= 阅读全文
posted @ 2021-11-25 12:28 智人心 阅读(29) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> #include<queue> using namespace std; struct Node{ int x,y; Node(){ x = 0; y = 0; } Node(int a,int b){ x = a; y = 阅读全文
posted @ 2021-11-25 12:24 智人心 阅读(54) 评论(0) 推荐(0)