摘要: 1 #include <iostream> 2 #include <bitset> 3 using namespace std; 4 int main() 5 { 6 int n,m; 7 int len; 8 string temp; 9 bitset<8> t; 10 while(cin>>n> 阅读全文
posted @ 2020-02-25 17:54 xuecl 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int MAX = 100; 5 char arr[MAX][MAX];//存放 “w 和 . ” 6 7 int nx[4] = {0,1,0,-1};//4个坐标(0,1)(1 阅读全文
posted @ 2020-02-25 17:26 xuecl 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 const int MAX = 100; 5 char arr[MAX][MAX]; 6 int n,m; 7 8 void init(); 9 void solve(); 10 void d 阅读全文
posted @ 2020-02-25 17:13 xuecl 阅读(218) 评论(0) 推荐(0) 编辑