dengxinyi 6 年之前
父節點
當前提交
45693233a8
共有 1 個文件被更改,包括 18 次插入0 次删除
  1. 18 0
      bailian/4116.rescue-operations/main.cc

+ 18 - 0
bailian/4116.rescue-operations/main.cc

@@ -0,0 +1,18 @@
+#include <cstdio>
+
+using namespace std;
+
+const int L = 200;
+
+char map[L][L + 1];
+
+int main() {
+  int s, n, m;
+  scanf("%d", &s);
+  while (s--) {
+    scanf("%d %d", &n, &m);
+    for (int i = 0; i < n; i++) scanf("%s", map[i]);
+    
+  }
+  return 0;
+}