Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55134 | lgh | 最小生成树 (mst) | C++ | 编译错误 | 0 | 0 MS | 0 KB | 499 | 2022-08-09 11:34:03 |
#include <bits/stdc++.h> using namespace std; template<typename T> inline void red(T &x) { bool s=1;x=0;char c=getchar(); while(c<=32) c=getchar(); if(c=='-') s=-1,c=getchar(); for(; ('0'<=c && c<='9'); c=getchar()) x=(x<<3)+(x<<1)+(c^48); x=(s==1?x:-x); } int n,m,Map[55][55]; struct node { int l,r,u,d; }; int main() { red(n),red(m); for(int i=1; i<=n; i++) for(int j=1; j<=m; j++) Map[i][j]=(getchar()=='X'); dfs(1,1); return 0; }