struct Matrix{ int a[N][N]; Matrix(){memset(a,0x3f3f3f3f,sizeof(a));} }
其中将 int a[N][N] 改为 long long a[N][N] 后编译运行,连读入都没有,直接结束了,是为什么?
int a[N][N]
long long a[N][N]